mirror of
https://gitee.com/johng/gf
synced 2026-07-04 21:03:13 +08:00
12 lines
223 B
Go
12 lines
223 B
Go
package main
|
|
|
|
import (
|
|
_ "gitee.com/johng/gf/geg/net/controller/controller"
|
|
"gitee.com/johng/gf/g/net/ghttp"
|
|
)
|
|
|
|
func main() {
|
|
ghttp.GetServer("johng.cn").SetAddr(":8199")
|
|
ghttp.GetServer("johng.cn").Run()
|
|
}
|