93 lines
2.1 KiB
Go
Raw Normal View History

2023-06-12 18:08:34 +08: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.MethodPost,
2023-07-12 14:11:04 +08:00
Path: "/api/user/login",
2023-06-12 18:08:34 +08:00
Handler: UserLoginHandler(serverCtx),
},
2023-06-14 18:17:45 +08:00
{
Method: http.MethodPost,
2023-07-12 14:11:04 +08:00
Path: "/api/user/accept-cookie",
2023-06-14 18:17:45 +08:00
Handler: AcceptCookieHandler(serverCtx),
},
2023-06-12 18:08:34 +08:00
{
Method: http.MethodGet,
2023-07-12 14:11:04 +08:00
Path: "/api/user/fonts",
2023-06-12 18:08:34 +08:00
Handler: UserFontsHandler(serverCtx),
},
{
Method: http.MethodGet,
2023-07-12 14:11:04 +08:00
Path: "/api/user/get-type",
2023-06-12 18:08:34 +08:00
Handler: UserGetTypeHandler(serverCtx),
},
{
Method: http.MethodPost,
2023-07-12 14:11:04 +08:00
Path: "/api/user/basic-info",
2023-06-12 18:08:34 +08:00
Handler: UserSaveBasicInfoHandler(serverCtx),
},
{
2023-07-14 19:26:00 +08:00
Method: http.MethodGet,
2023-07-12 14:11:04 +08:00
Path: "/api/user/status-config",
2023-06-12 18:08:34 +08:00
Handler: UserStatusConfigHandler(serverCtx),
},
{
Method: http.MethodGet,
2023-07-12 14:11:04 +08:00
Path: "/api/user/basic-info",
2023-06-12 18:08:34 +08:00
Handler: UserBasicInfoHandler(serverCtx),
},
{
Method: http.MethodGet,
2023-07-12 14:11:04 +08:00
Path: "/api/user/address-list",
2023-06-12 18:08:34 +08:00
Handler: UserAddressListHandler(serverCtx),
},
2023-06-19 18:27:31 +08:00
{
Method: http.MethodPost,
2023-07-12 14:11:04 +08:00
Path: "/api/user/add-address",
2023-06-19 18:27:31 +08:00
Handler: UserAddAddressHandler(serverCtx),
},
2023-06-28 19:32:41 +08:00
{
Method: http.MethodPost,
2023-07-12 14:11:04 +08:00
Path: "/api/user/contact-service",
2023-06-28 19:32:41 +08:00
Handler: UserContactServiceHandler(serverCtx),
},
2023-06-20 12:15:14 +08:00
{
Method: http.MethodPost,
2023-07-12 14:11:04 +08:00
Path: "/api/user/order-delete",
2023-06-20 12:15:14 +08:00
Handler: UserOderDeleteHandler(serverCtx),
},
2023-07-17 19:43:43 +08:00
{
Method: http.MethodGet,
2023-07-17 19:43:43 +08:00
Path: "/api/user/oauth2/login/google",
Handler: UserGoogleLoginHandler(serverCtx),
},
2023-07-24 12:18:27 +08:00
{
Method: http.MethodGet,
Path: "/api/user/oauth2/login/register",
Handler: UserEmailRegisterHandler(serverCtx),
},
2023-07-20 15:43:48 +08:00
{
Method: http.MethodGet,
Path: "/api/user/order-list",
2023-07-20 15:55:01 +08:00
Handler: UserOrderListHandler(serverCtx),
2023-07-20 15:43:48 +08:00
},
{
Method: http.MethodGet,
Path: "/api/user/order-cancel",
Handler: UserOrderCancelHandler(serverCtx),
},
2023-06-12 18:08:34 +08:00
},
)
}