Files
gfast/main.go
T
2020-07-17 09:59:38 +08:00

17 lines
244 B
Go

package main
import (
_ "gfast/boot"
_ "gfast/router"
"github.com/gogf/gf/frame/g"
)
// @title gfast API文档
// @version 1.0
// @description gfast 在线API文档
// @host localhost
// @BasePath /system
func main() {
g.Server().Run()
}