Skip to content

Instantly share code, notes, and snippets.

View maxbrunet's full-sized avatar
💭
I may be slow to respond.

Maxime Brunet maxbrunet

💭
I may be slow to respond.
View GitHub Profile
@enricofoltran
enricofoltran / main.go
Last active June 26, 2024 12:16
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"