Skip to content

Instantly share code, notes, and snippets.

View nikpelgr's full-sized avatar

Nik Peltekis nikpelgr

  • Persado
  • Chania, Greece
View GitHub Profile
@nikpelgr
nikpelgr / main.go
Created June 23, 2021 21:26 — 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"