gf/geg/frame/mvc/main.go

12 lines
200 B
Go
Raw Normal View History

2017-12-07 17:34:51 +08:00
package main
import (
"gitee.com/johng/gf/g/net/ghttp"
2017-12-30 18:35:24 +08:00
_ "gitee.com/johng/gf/geg/frame/mvc/controller/demo"
2017-12-07 17:34:51 +08:00
)
func main() {
ghttp.GetServer().SetPort(8199)
ghttp.GetServer().Run()
2017-12-07 17:34:51 +08:00
}