下記にコメントで示した範囲の文法の名前とできれば働きをご教示してください。
go
1package main 2 3import ( 4 "net/http" 5 6 "github.com/gin-gonic/contrib/static" 7 "github.com/gin-gonic/gin" 8) 9 10func main() { 11 router := gin.Default() 12 13 router.Use(static.Serve("/", static.LocalFile("./views", true))) 14 15// ここから 16 api := router.Group("/api") 17 { 18 api.GET("/", func(ctx *gin.Context) { 19 ctx.JSON(http.StatusOK, gin.H{ 20 "message": "hello", 21 }) 22 }) 23 } 24// ここまでの文法 25 26 router.Run() 27} 28
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/06 04:41
2020/08/06 06:37 編集