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