Files
gfast/main.go
T
2021-07-20 11:11:30 +08:00

12 lines
124 B
Go

package main
import (
_ "gfast/boot"
_ "gfast/router"
"github.com/gogf/gf/frame/g"
)
func main() {
g.Server().Run()
}