mirror of
https://gitee.com/johng/gf.git
synced 2024-12-03 04:37:49 +08:00
14 lines
250 B
Go
14 lines
250 B
Go
package main
|
|
|
|
import "github.com/gogf/gf/frame/g"
|
|
|
|
// 静态文件服务器基本使用
|
|
func main() {
|
|
s := g.Server()
|
|
s.SetIndexFolder(true)
|
|
s.SetServerRoot("/Users/john/Temp")
|
|
s.AddSearchPath("/Users/john/Documents")
|
|
s.SetPort(8199)
|
|
s.Run()
|
|
}
|