mirror of
https://github.com/tiger1103/gfast.git
synced 2026-09-21 18:20:47 +00:00
17 lines
244 B
Go
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()
|
|
}
|