mirror of
https://gitee.com/johng/gf.git
synced 2024-12-03 12:47: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()
|
|
|
|
}
|