解决安装包失败问题(*)
go env -w GO111MODULE=on
go env -w GOPROXY=https://goproxy.cn,direct
1 介绍
Gin 是一个 Go (Golang) 编写的轻量级 http web 框架,运行速度非常快,Gin 最擅长的就是 Api 接口的高并发。
2 Gin 环境搭建
1.下载并安装 gin
go get -u github.com/gin-gonic/gin
2.将 gin 引入到代码中:
import "github.com/gin-gonic/gin"
3. (可选)如果使用诸如 http.StatusOK 之类的常量,则需要引入 net/http 包:
import "net/http"