mirror of
https://gitee.com/johng/gf.git
synced 2024-12-05 05:37:55 +08:00
9 lines
181 B
Go
9 lines
181 B
Go
package demo
|
|
|
|
import "gitee.com/johng/gf/g/net/ghttp"
|
|
|
|
func init() {
|
|
ghttp.GetServer().BindHandler("/", func(r *ghttp.Request){
|
|
r.Response.Write("Hello World!")
|
|
})
|
|
} |