2023-06-09 04:07:54 +00:00
|
|
|
// Code generated by goctl. DO NOT EDIT.
|
|
|
|
package handler
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"fusenapi/server/canteen/internal/svc"
|
|
|
|
|
|
|
|
"github.com/zeromicro/go-zero/rest"
|
|
|
|
)
|
|
|
|
|
|
|
|
func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
|
|
|
|
server.AddRoutes(
|
|
|
|
[]rest.Route{
|
|
|
|
{
|
|
|
|
Method: http.MethodPost,
|
2023-07-12 06:11:04 +00:00
|
|
|
Path: "/api/canteen-type/detail",
|
2023-06-09 04:07:54 +00:00
|
|
|
Handler: GetCanteenDetailHandler(serverCtx),
|
|
|
|
},
|
2023-06-09 04:16:37 +00:00
|
|
|
{
|
|
|
|
Method: http.MethodPost,
|
2023-07-12 06:11:04 +00:00
|
|
|
Path: "/api/canteen-type/save",
|
2023-06-09 04:16:37 +00:00
|
|
|
Handler: SaveCanteenTypeProductHandler(serverCtx),
|
|
|
|
},
|
2023-06-09 04:07:54 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|