Gin安装
1.在系统环境变量中 GOROOT
值为 C:Go
,并保存
2.将GOROOT
添加到环境变量中,并保存
3.使用 mod
# 初始化 mod
go mod init 项目名称
# 指定gin的版本
go mod edit -require github.com/gin-gonic/gin@latest
# 开启模块支持
go env -w GO111MODULE=on
# 添加国内代理
go env -w GOPROXY=https://goproxy.cn,direct
4.安装 gin
框架
go get -u github.com/gin-gonic/gin
5.简单的示例, 源代码必须在新建的src目录中
package main
import "github.com/gin-gonic/gin"
func main() {
r := gin.Default()
r.GET("/ping", func(c *gin.Context) {
c.JSON(200, gin.H{
"message": "pong",
})
})
r.Run() // listen and serve on 0.0.0.0:8080 (for windows "localhost:8080")
}
6.运行代码
go run example.go
Linux下使用Crontab定时执行脚本
HDU 4824 Disk Schedule
Educational Codeforces Round 26 D. Round Subset 动态规划
POJ 1833 排列
HDU 1716 全排列
HDU 1027 全排列
Educational Codeforces Round 26 A C 之Python
ACM输入输出之python
标准C程序设计七---102