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 04:15:06 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|