mirror of
https://gitee.com/johng/gf
synced 2026-07-08 14:39:50 +08:00
16 lines
258 B
Go
16 lines
258 B
Go
package main
|
|
|
|
import (
|
|
"github.com/gogf/gf/g"
|
|
_ "github.com/gogf/gf/geg/frame/mvc/controller/demo"
|
|
_ "github.com/gogf/gf/geg/frame/mvc/controller/stats"
|
|
)
|
|
|
|
func main() {
|
|
|
|
//g.Server().SetDumpRouteMap(false)
|
|
g.Server().SetPort(8199)
|
|
g.Server().Run()
|
|
|
|
}
|