Gin框架
Posted juice-e
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Gin框架相关的知识,希望对你有一定的参考价值。
快速入门
运行这段代码并在浏览器中访问 http://localhost:8080
package main
import "github.com/gin-gonic/gin"
func main() {
r := gin.Default()
r.GET("/ping", func(c *gin.Context) {
c.JSON(200, gin.H{
"message": "pong",
})
})
r.Run() // listen and serve on 0.0.0.0:8080
}
以上是关于Gin框架的主要内容,如果未能解决你的问题,请参考以下文章