11 lines
266 B
Go
11 lines
266 B
Go
package controller
|
|
|
|
import "github.com/gogf/gf/v2/net/ghttp"
|
|
|
|
// Register 注册全部路由分组;各业务控制器在对应任务中挂载。
|
|
func Register(s *ghttp.Server) {
|
|
s.BindHandler("GET:/ping", func(r *ghttp.Request) {
|
|
r.Response.Write("pong")
|
|
})
|
|
}
|