mirror of
https://gitee.com/johng/gf
synced 2026-06-30 11:05:11 +08:00
9 lines
188 B
Go
9 lines
188 B
Go
package main
|
|
|
|
import "gitee.com/johng/gf/g/net/ghttp"
|
|
|
|
func init() {
|
|
ghttp.GetServer().BindHandler("/", func(r *ghttp.Request) {
|
|
r.Response.WriteString("Hello World!")
|
|
})
|
|
} |