mirror of
https://gitee.com/johng/gf
synced 2026-07-01 03:21:22 +08:00
14 lines
214 B
Go
14 lines
214 B
Go
package main
|
|
|
|
import (
|
|
"gitee.com/johng/gf/g/net/ghttp"
|
|
)
|
|
|
|
func main() {
|
|
s := ghttp.GetServer()
|
|
s.SetIndexFolder(true)
|
|
s.SetServerRoot("/home/john/Workspace/view")
|
|
s.SetPort(8199)
|
|
s.Run()
|
|
}
|