38 lines
840 B
Go
38 lines
840 B
Go
|
// Code generated by goctl. DO NOT EDIT.
|
||
|
package handler
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"fusenapi/server/shopping-cart/internal/svc"
|
||
|
|
||
|
"github.com/zeromicro/go-zero/rest"
|
||
|
)
|
||
|
|
||
|
func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
|
||
|
server.AddRoutes(
|
||
|
[]rest.Route{
|
||
|
{
|
||
|
Method: http.MethodPost,
|
||
|
Path: "/api/shopping-cart/add_to_cart",
|
||
|
Handler: AddToCartHandler(serverCtx),
|
||
|
},
|
||
|
{
|
||
|
Method: http.MethodPost,
|
||
|
Path: "/api/shopping-cart/delete_cart",
|
||
|
Handler: DeleteCartHandler(serverCtx),
|
||
|
},
|
||
|
{
|
||
|
Method: http.MethodPost,
|
||
|
Path: "/api/shopping-cart/modify_cart_purchase_quantity",
|
||
|
Handler: ModifyCartPurchaseQuantityHandler(serverCtx),
|
||
|
},
|
||
|
{
|
||
|
Method: http.MethodGet,
|
||
|
Path: "/api/shopping-cart/get_carts",
|
||
|
Handler: GetCartsHandler(serverCtx),
|
||
|
},
|
||
|
},
|
||
|
)
|
||
|
}
|