fusenapi/server/home-user-auth/internal/handler/routes.go

103 lines
2.4 KiB
Go
Raw Normal View History

2023-06-12 10:08:34 +00:00
// Code generated by goctl. DO NOT EDIT.
package handler
import (
"net/http"
"fusenapi/server/home-user-auth/internal/svc"
"github.com/zeromicro/go-zero/rest"
)
func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
server.AddRoutes(
[]rest.Route{
{
Method: http.MethodGet,
2023-07-12 06:11:04 +00:00
Path: "/api/user/fonts",
2023-06-12 10:08:34 +00:00
Handler: UserFontsHandler(serverCtx),
},
{
Method: http.MethodGet,
2023-07-12 06:11:04 +00:00
Path: "/api/user/get-type",
2023-06-12 10:08:34 +00:00
Handler: UserGetTypeHandler(serverCtx),
},
{
Method: http.MethodPost,
2023-07-12 06:11:04 +00:00
Path: "/api/user/basic-info",
2023-06-12 10:08:34 +00:00
Handler: UserSaveBasicInfoHandler(serverCtx),
},
{
2023-07-14 11:26:00 +00:00
Method: http.MethodGet,
2023-07-12 06:11:04 +00:00
Path: "/api/user/status-config",
2023-06-12 10:08:34 +00:00
Handler: UserStatusConfigHandler(serverCtx),
},
{
Method: http.MethodGet,
2023-07-12 06:11:04 +00:00
Path: "/api/user/basic-info",
2023-06-12 10:08:34 +00:00
Handler: UserBasicInfoHandler(serverCtx),
},
{
Method: http.MethodGet,
2023-07-12 06:11:04 +00:00
Path: "/api/user/address-list",
2023-06-12 10:08:34 +00:00
Handler: UserAddressListHandler(serverCtx),
},
2023-06-19 10:27:31 +00:00
{
Method: http.MethodPost,
2023-07-12 06:11:04 +00:00
Path: "/api/user/add-address",
2023-06-19 10:27:31 +00:00
Handler: UserAddAddressHandler(serverCtx),
},
2023-06-28 11:32:41 +00:00
{
Method: http.MethodPost,
2023-07-12 06:11:04 +00:00
Path: "/api/user/contact-service",
2023-06-28 11:32:41 +00:00
Handler: UserContactServiceHandler(serverCtx),
},
2023-06-20 04:15:14 +00:00
{
Method: http.MethodPost,
2023-07-12 06:11:04 +00:00
Path: "/api/user/order-delete",
2023-06-20 04:15:14 +00:00
Handler: UserOderDeleteHandler(serverCtx),
},
2023-07-20 07:43:48 +00:00
{
Method: http.MethodGet,
Path: "/api/user/order-list",
2023-07-20 07:55:01 +00:00
Handler: UserOrderListHandler(serverCtx),
2023-07-20 07:43:48 +00:00
},
2023-07-26 03:06:05 +00:00
{
Method: http.MethodGet,
Path: "/api/user/order-delete",
Handler: UserOrderDeleteHandler(serverCtx),
},
2023-07-20 07:43:48 +00:00
{
Method: http.MethodGet,
Path: "/api/user/order-cancel",
Handler: UserOrderCancelHandler(serverCtx),
},
2023-08-03 06:38:17 +00:00
{
Method: http.MethodGet,
Path: "/api/user/logo-list",
Handler: UserLogoListHandler(serverCtx),
},
2023-08-03 09:37:25 +00:00
{
Method: http.MethodGet,
Path: "/api/user/one-more-order",
Handler: UserAgainOrderHandler(serverCtx),
},
{
Method: http.MethodPost,
Path: "/api/user/set_user_info",
Handler: UserInfoSetHandler(serverCtx),
},
2023-09-07 10:52:01 +00:00
{
2023-09-08 03:47:53 +00:00
Method: http.MethodPost,
2023-09-07 10:52:01 +00:00
Path: "/api/user/logo-set",
Handler: UserLogoSetHandler(serverCtx),
},
2023-09-19 04:04:51 +00:00
{
Method: http.MethodPost,
Path: "/api/user/logo-templatetag-set",
Handler: UserLogoTemplateTagSetHandler(serverCtx),
},
2023-06-12 10:08:34 +00:00
},
)
}