Skip to content

Instantly share code, notes, and snippets.

View sercand's full-sized avatar

Sercan Değirmenci sercand

  • Otsimo
  • Turkey
View GitHub Profile
@sercand
sercand / main.go
Created January 7, 2018 20:49 — 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"