mirror of
https://gitee.com/johng/gf.git
synced 2024-12-05 05:37:55 +08:00
13 lines
205 B
Go
13 lines
205 B
Go
package main
|
|
|
|
import "gitee.com/johng/gf/g"
|
|
|
|
// 静态文件服务器
|
|
func main() {
|
|
s := g.Server()
|
|
s.SetIndexFolder(true)
|
|
s.SetServerRoot("/Users/john/Temp")
|
|
s.SetPort(8199)
|
|
s.Run()
|
|
}
|