mirror of
https://gitee.com/johng/gf
synced 2026-06-27 17:57:21 +08:00
11 lines
171 B
Go
11 lines
171 B
Go
package main
|
|
|
|
import "gitee.com/johng/gf/g/net/ghttp"
|
|
|
|
func main() {
|
|
s := ghttp.GetServer()
|
|
s.SetIndexFolder(true)
|
|
s.SetServerRoot("/home/www/")
|
|
s.Run()
|
|
}
|