package main import ( "net/http" "github.com/gin-gonic/gin" ) func main() { app := gin.Default() app.GET("/", func(ctx *gin.Context) { ctx.JSON(http.StatusOK, "hello world") }) app.Run(":4037") }