mirror of
https://gitee.com/johng/gf
synced 2026-07-08 14:39:50 +08:00
12 lines
200 B
Go
12 lines
200 B
Go
package main
|
|
|
|
import (
|
|
"gitee.com/johng/gf/g/net/ghttp"
|
|
_ "gitee.com/johng/gf/geg/frame/mvc/controller/demo"
|
|
)
|
|
|
|
func main() {
|
|
ghttp.GetServer().SetPort(8199)
|
|
ghttp.GetServer().Run()
|
|
}
|