fusenapi/server/shopping-cart-confirmation/internal/handler/routes.go

38 lines
735 B
Go
Raw Normal View History

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