Skip to content

Instantly share code, notes, and snippets.

@jgong
jgong / main.go
Last active February 2, 2020 02:32 — 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"