Skip to content

Instantly share code, notes, and snippets.

View VivaLaPanda's full-sized avatar
💭
Working less than I'd like

Panda VivaLaPanda

💭
Working less than I'd like
View GitHub Profile
@enricofoltran
enricofoltran / main.go
Last active April 1, 2024 00:17
A simple golang web server with basic logging, tracing, health check, graceful shutdown and zero dependencies
package main
import (
"context"
"flag"
"fmt"
"log"
"net/http"
"os"
"os/signal"