mirror of
https://gitee.com/johng/gf
synced 2026-07-05 21:32:17 +08:00
13 lines
234 B
Go
13 lines
234 B
Go
package main
|
|
|
|
import (
|
|
"gitee.com/johng/gf/g"
|
|
_ "gitee.com/johng/gf/geg/frame/mvc/controller/demo"
|
|
_ "gitee.com/johng/gf/geg/frame/mvc/controller/stats"
|
|
)
|
|
|
|
func main() {
|
|
g.Server().SetPort(8199)
|
|
g.Server().Run()
|
|
}
|