Skip to content

Instantly share code, notes, and snippets.

View MelchiSalins's full-sized avatar
🏠
Working from home

Melchi MelchiSalins

🏠
Working from home
View GitHub Profile
@peterhellberg
peterhellberg / graceful.go
Last active November 13, 2024 20:20
*http.Server in Go 1.8 supports graceful shutdown. This is a small example.
package main
import (
"context"
"log"
"net/http"
"os"
"os/signal"
"time"
)