Skip to content

Instantly share code, notes, and snippets.

View YYYGH's full-sized avatar

Shine Yang YYYGH

View GitHub Profile
@YYYGH
YYYGH / main.go
Created November 21, 2018 08:56 — 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"