You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
335 B
Go
20 lines
335 B
Go
// DO NOT EDIT, generated by goctl
|
|
package handler
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"zero/example/graceful/dns/api/svc"
|
|
"zero/rest"
|
|
)
|
|
|
|
func RegisterHandlers(engine *rest.Engine, ctx *svc.ServiceContext) {
|
|
engine.AddRoutes([]rest.Route{
|
|
{
|
|
Method: http.MethodGet,
|
|
Path: "/api/graceful",
|
|
Handler: gracefulHandler(ctx),
|
|
},
|
|
})
|
|
}
|