mirror of
https://gitee.com/johng/gf.git
synced 2024-12-02 04:07:47 +08:00
1.8 KiB
1.8 KiB
安装
go get -u gitee.com/johng/gf
使用
package main
import "gitee.com/johng/gf/g/net/ghttp"
func main() {
ghttp.GetServer().BindHandler("/", func(r *ghttp.Request){
r.Response.WriteString("Hello World!")
})
}