创建模块
go mod init demo
服务器
package main
import (
"github.com/gin-gonic/gin"
"net/http"
)
func main() {
// 创建路由
router := gin.Default()
// 绑定路径
router.GET("/", func(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{"message": "你好,Gin"})
})
// 运行服务
router.Run(":8080")
}
客户端
浏览器访问:http://localhost:8080/