```go
package main
import (
"fmt"
"github.com/gin-gonic/gin"
)
//step1 获取 http_proxy=192.168.1.2:20080 go get github.com/gin-gonic/gin
//http_proxy=192.168.1.2:20080 这部分是代理设置
func main() {
r := gin.Default()
v1 := r.Group("api/v1")
{
v1.GET("/users", GetUsers)
}
fmt.Println("hello world")
r.Run(":8080")
}
func GetUsers(c *gin.Context) {
c.JSON(200, "helloman")
}
```
github 地址:https://github.com/godla/golang-gin-test.git
一起每天更新一些代码
有疑问加站长微信联系(非本文作者)