mirror of
https://gitee.com/johng/gf.git
synced 2024-12-05 05:37:55 +08:00
12 lines
217 B
Go
12 lines
217 B
Go
package main
|
|
|
|
import (
|
|
"gitee.com/johng/gf/g/net/ghttp"
|
|
_ "gitee.com/johng/gf/geg/frame/mvc/controller/user"
|
|
)
|
|
|
|
func main() {
|
|
ghttp.GetServer("johng").SetAddr(":8199")
|
|
ghttp.GetServer("johng").Run()
|
|
}
|