package main import "github.com/gin-gonic/gin" func main() { router := gin.Default() router.GET("/ping", ping) router.Run(":8000") }