Files
gf/geg/net/ghttp/server/hello.go
2019-06-05 18:41:11 +08:00

17 lines
250 B
Go

package main
import (
"github.com/gogf/gf/g"
"github.com/gogf/gf/g/net/ghttp"
)
func main() {
s := g.Server()
s.SetIndexFolder(true)
s.BindHandler("/", func(r *ghttp.Request) {
r.Response.Write("hello world")
})
s.SetPort(8199)
s.Run()
}