// 配置
cp .env.example .env
// 日志
mkdir runtime
// 构建
go build main.go
// 构建时指定 CPU 核心数量
go build -ldflags "-X main.SetCpuCount=1" main.go
// 获取运行参数
./main server -h
// 开启接口服务
./main server
// 运行脚本
./main cmd demo hello
./main cmd demo world
Doc
依赖
go get -u github.com/swaggo/swag/cmd/swag@v1.6.5
go get -u github.com/swaggo/gin-swagger@v1.2.0
go get -u github.com/swaggo/files
go get -u github.com/alecthomas/template