2023-06-13 04:15:06 +00:00
|
|
|
// Code generated by goctl. DO NOT EDIT.
|
|
|
|
package handler
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"fusenapi/server/shopping-cart-confirmation/internal/svc"
|
|
|
|
|
|
|
|
"github.com/zeromicro/go-zero/rest"
|
|
|
|
)
|
|
|
|
|
|
|
|
func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
|
|
|
|
server.AddRoutes(
|
|
|
|
[]rest.Route{
|
|
|
|
{
|
|
|
|
Method: http.MethodPost,
|
|
|
|
Path: "/cart/add",
|
|
|
|
Handler: CartAddHandler(serverCtx),
|
|
|
|
},
|
2023-06-13 06:13:40 +00:00
|
|
|
{
|
|
|
|
Method: http.MethodPost,
|
|
|
|
Path: "/cart/del",
|
|
|
|
Handler: CartDeleteHandler(serverCtx),
|
|
|
|
},
|
2023-06-13 06:29:44 +00:00
|
|
|
{
|
|
|
|
Method: http.MethodGet,
|
|
|
|
Path: "/cart/num",
|
|
|
|
Handler: CartNumberHandler(serverCtx),
|
|
|
|
},
|
2023-06-13 09:47:48 +00:00
|
|
|
{
|
|
|
|
Method: http.MethodGet,
|
|
|
|
Path: "/cart/list",
|
|
|
|
Handler: CartListHandler(serverCtx),
|
|
|
|
},
|
2023-06-14 06:05:27 +00:00
|
|
|
{
|
|
|
|
Method: http.MethodGet,
|
|
|
|
Path: "/cart/order-detail",
|
|
|
|
Handler: CartOrderDetailHandler(serverCtx),
|
|
|
|
},
|
2023-06-14 09:59:48 +00:00
|
|
|
{
|
|
|
|
Method: http.MethodPost,
|
|
|
|
Path: "/cart/chang-order-method",
|
|
|
|
Handler: ChangeOrderMethodHandler(serverCtx),
|
|
|
|
},
|
2023-07-03 09:33:59 +00:00
|
|
|
{
|
|
|
|
Method: http.MethodPost,
|
|
|
|
Path: "/cart/create-order",
|
|
|
|
Handler: CreateOrderHandler(serverCtx),
|
|
|
|
},
|
2023-06-13 04:15:06 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|