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

98 lines
2.3 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.MethodPost,
2023-07-12 06:11:04 +00:00
Path: "/api/user/login",
2023-06-12 10:08:34 +00:00
Handler: UserLoginHandler(serverCtx),
},
2023-06-14 10:17:45 +00:00
{
Method: http.MethodPost,
2023-07-12 06:11:04 +00:00
Path: "/api/user/accept-cookie",
2023-06-14 10:17:45 +00:00
Handler: AcceptCookieHandler(serverCtx),
},
2023-06-12 10:08:34 +00:00
{
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-17 11:43:43 +00:00
{
Method: http.MethodGet,
2023-07-17 11:43:43 +00:00
Path: "/api/user/oauth2/login/google",
Handler: UserGoogleLoginHandler(serverCtx),
},
2023-07-24 04:18:27 +00:00
{
Method: http.MethodGet,
Path: "/api/user/oauth2/login/register",
Handler: UserEmailRegisterHandler(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-06-12 10:08:34 +00:00
},
)
}