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 October 3, 2024 14:08
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"