123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- // Code generated by goctl. DO NOT EDIT.
- package handler
- import (
- "net/http"
- "jyBXSubscribe/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: "/jybx/subscribe/:userType/list",
- Handler: subscribeListHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/subscribe/:userType/someInfo",
- Handler: someInfoHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/subscribe/:userType/update",
- Handler: subscribeUpdateHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/subscribe/:userType/byPushHistory",
- Handler: ByPushHistoryHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/subscribe/:userType/setRead",
- Handler: SetReadHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/subscribe/:userType/getKey",
- Handler: getKeyHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/subscribe/:userType/distributor",
- Handler: distributorHandler(serverCtx),
- },
- {
- Method: http.MethodPost,
- Path: "/jybx/subscribe/:userType/viewStatus",
- Handler: viewStatusHandler(serverCtx),
- },
- },
- )
- }
|