加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.go 298 Bytes
一键复制 编辑 原始数据 按行查看 历史
tiger1103 提交于 2021-09-01 10:35 . 加入swagger
package main
import (
_ "gfast/boot"
_ "gfast/router"
"github.com/gogf/gf/frame/g"
"github.com/gogf/swagger"
)
// @title GFast
// @version 2.0
// @description GFast后台管理框架
// @schemes http https
func main() {
s := g.Server()
s.Plugin(&swagger.Swagger{})
s.Run()
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化