Skip to content

Instantly share code, notes, and snippets.

View stayradiated's full-sized avatar
🏃‍♂️
Running fast!

George Czabania stayradiated

🏃‍♂️
Running fast!
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"