123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- // Code generated by goctl. DO NOT EDIT.
- package handler
- import (
- "net/http"
- "app.yhyue.com/moapp/jyResourcesCenter/api/internal/svc"
- "github.com/zeromicro/go-zero/rest"
- )
- func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
- server.AddRoutes(
- []rest.Route{
- {
- Method: http.MethodPost,
- Path: "/resources/useUserDetailed",
- Handler: UseUserDetailedHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/resources/purchaseUserBalance",
- Handler: PurchaseUserBalanceHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/resources/findPreview",
- Handler: FindPreviewHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/resources/findRecord",
- Handler: FindRecordHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/resources/findAuth",
- Handler: FindAuthHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/resources/findBalance",
- Handler: FindBalanceHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/resources/userMerge",
- Handler: UserMergeHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/resources/updateVipTime",
- Handler: UpdateVipTimeHandler(serverCtx),
- },
- },
- )
- }
|