Skip to content

Instantly share code, notes, and snippets.

View Lywangwenbin's full-sized avatar

wenbin.wang Lywangwenbin

  • UCloud
  • 上海市杨浦区
View GitHub Profile
@peterhellberg
peterhellberg / graceful.go
Last active June 11, 2024 12:27
*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"
)