Gin框架的使用
1、go mod init
2、下载 gin
go get github.com/gin-gonic/gin
package main
import ( "net/http"
"github.com/gin-gonic/gin" )
func main() {
// 1.创建 (实例化gin.Engine结构体对象)
r := gin.Default()
// 2.绑定路由规则,执行的函数 // gin.Context,封装了request和response
r.GET("/", func(c *gin.Context) { c.String(http.StatusOK, "hello World!") })
// 3.监听端口,默认在8080
// Run("里面不指定端口号默认为8080")
r.Run(":8000") }