2023-06-27 06:25:25 +00:00
|
|
|
// Code generated by goctl. DO NOT EDIT.
|
|
|
|
package handler
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"fusenapi/server/inventory/internal/svc"
|
|
|
|
|
|
|
|
"github.com/zeromicro/go-zero/rest"
|
|
|
|
)
|
|
|
|
|
|
|
|
func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
|
|
|
|
server.AddRoutes(
|
|
|
|
[]rest.Route{
|
|
|
|
{
|
|
|
|
Method: http.MethodPost,
|
|
|
|
Path: "/inventory/take",
|
|
|
|
Handler: TakeHandler(serverCtx),
|
|
|
|
},
|
2023-06-27 09:04:58 +00:00
|
|
|
{
|
|
|
|
Method: http.MethodGet,
|
|
|
|
Path: "/inventory/list",
|
|
|
|
Handler: GetCloudListHandler(serverCtx),
|
|
|
|
},
|
2023-06-28 09:05:31 +00:00
|
|
|
{
|
|
|
|
Method: http.MethodPost,
|
|
|
|
Path: "/inventory/supplement",
|
|
|
|
Handler: SupplementHandler(serverCtx),
|
|
|
|
},
|
2023-06-27 06:25:25 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|