Skip to content

Instantly share code, notes, and snippets.

@aurora6174
aurora6174 / main.go
Created April 22, 2022 05:52 — forked from enricofoltran/main.go
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"