12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- // Code generated by goctl. DO NOT EDIT.
- package handler
- import (
- "net/http"
- "app.yhyue.com/moapp/jyPoints/api/internal/svc"
- "github.com/zeromicro/go-zero/rest"
- )
- func RegisterHandlers(engine *rest.Server, serverCtx *svc.ServiceContext) {
- engine.AddRoutes(
- []rest.Route{
- {
- Method: http.MethodGet,
- Path: "/integralBalanceCheck",
- Handler: IntegralBalanceCheckHandler(serverCtx),
- },
- {
- Method: http.MethodGet,
- Path: "/integralExpireCheck",
- Handler: IntegralExpireCheckHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/integralHarvest",
- Handler: IntegralHarvestHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/integralConsume",
- Handler: IntegralConsumeHandler(serverCtx),
- },
- {
- Method: http.MethodGet,
- Path: "/integralDetailedCheck",
- Handler: IntegralDetailedCheckHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/integralGuard",
- Handler: IntegralGuardHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/userMerge",
- Handler: UserMergeHandler(serverCtx),
- },
- },
- )
- }
|