安装
要安装Gin软件包,您需要安装Go并首先设置Go工作区。
1,首先需要安装Go(需要1.10+版本),然后可以使用下面的Go命令安装Gin。
1 | go get -u github.com/gin-gonic/gin |
2,将其导入您的代码中:
1 | import "github.com/gin-gonic/gin" |
3,(可选)导入net/http。例如,如果使用常量,则需要这样做http.StatusOK
。
1 | import "net/http" |
hello word
1 | package main |