fusenapi/server/shopping-cart-confirmation/internal/handler/routes.go
laodaming 147af8ae29 fix
2023-06-13 14:13:40 +08:00

28 lines
518 B
Go

// 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),
},
{
Method: http.MethodPost,
Path: "/cart/del",
Handler: CartDeleteHandler(serverCtx),
},
},
)
}