63 lines
1.4 KiB
Go
Raw Normal View History

2023-06-01 15:32:28 +08:00
// Code generated by goctl. DO NOT EDIT.
package handler
import (
"net/http"
2023-06-08 11:03:20 +08:00
"fusenapi/server/product/internal/svc"
2023-06-01 15:32:28 +08:00
"github.com/zeromicro/go-zero/rest"
)
func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
server.AddRoutes(
[]rest.Route{
{
Method: http.MethodGet,
Path: "/product/list",
Handler: GetProductListHandler(serverCtx),
},
2023-06-06 15:30:12 +08:00
{
Method: http.MethodGet,
Path: "/product/success-recommand",
Handler: GetSuccessRecommandHandler(serverCtx),
},
2023-06-07 17:27:17 +08:00
{
Method: http.MethodGet,
Path: "/product/get-size-by-product",
Handler: GetSizeByProductHandler(serverCtx),
},
2023-06-19 10:34:21 +08:00
{
Method: http.MethodGet,
Path: "/product/design",
Handler: GetProductDesignHandler(serverCtx),
},
2023-06-30 17:20:11 +08:00
{
Method: http.MethodPost,
Path: "/product/design-gather",
Handler: DesignGatherHandler(serverCtx),
},
2023-07-04 16:48:56 +08:00
{
Method: http.MethodGet,
Path: "/product/info",
Handler: GetProductInfoHandler(serverCtx),
},
2023-07-05 16:03:16 +08:00
{
Method: http.MethodPost,
Path: "/product/save-design",
Handler: SaveDesignHandler(serverCtx),
},
2023-07-10 19:42:55 +08:00
{
2023-07-11 11:36:01 +08:00
Method: http.MethodGet,
2023-07-10 19:42:55 +08:00
Path: "/product/other-list",
Handler: OtherProductListHandler(serverCtx),
},
2023-07-11 17:08:19 +08:00
{
Method: http.MethodGet,
Path: "/product/recommand",
Handler: GetRecommandProductListHandler(serverCtx),
},
2023-06-07 17:27:17 +08:00
},
)
2023-06-01 15:32:28 +08:00
}