mirror of
https://gitee.com/johng/gf.git
synced 2024-12-03 04:37:49 +08:00
Migrated repository
g | ||
geg | ||
.gitattributes | ||
.gitignore | ||
LICENSE | ||
README.MD | ||
version.go |
安装
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!")
})
ghttp.GetServer().Run()
}