1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- // 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),
- },
- {
- Method: http.MethodPost,
- Path: "/juybx/subscribe/msgDistributor",
- Handler: msgDistributorHandler(serverCtx),
- },
- },
- )
- }
|