mirror of
https://gitee.com/johng/gf
synced 2026-06-07 10:22:11 +08:00
14 lines
255 B
Go
14 lines
255 B
Go
package main
|
|
|
|
import "github.com/gogf/gf/frame/g"
|
|
|
|
// 静态文件服务器基本使用
|
|
func main() {
|
|
s := g.Server()
|
|
s.SetIndexFolder(true)
|
|
s.SetServerRoot("/Users/john/Downloads")
|
|
s.AddSearchPath("/Users/john/Documents")
|
|
s.SetPort(8199)
|
|
s.Run()
|
|
}
|