mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-26 11:28:46 +08:00
46995a4d7d
* rename file and function name * update comments of "code generate"
25 lines
451 B
Go
25 lines
451 B
Go
// Code generated by goctl. DO NOT EDIT.
|
|
package handler
|
|
|
|
import (
|
|
"bookstore/api/internal/svc"
|
|
"net/http"
|
|
|
|
"github.com/tal-tech/go-zero/rest"
|
|
)
|
|
|
|
func RegisterHandlers(engine *rest.Server, serverCtx *svc.ServiceContext) {
|
|
engine.AddRoutes([]rest.Route{
|
|
{
|
|
Method: http.MethodGet,
|
|
Path: "/add",
|
|
Handler: addHandler(serverCtx),
|
|
},
|
|
{
|
|
Method: http.MethodGet,
|
|
Path: "/check",
|
|
Handler: checkHandler(serverCtx),
|
|
},
|
|
})
|
|
}
|