package logic import ( "context" "jyBXSubscribe/rpc/internal/svc" "jyBXSubscribe/rpc/type/bxsubscribe" "github.com/zeromicro/go-zero/core/logx" ) type MsgDistributorLogic struct { ctx context.Context svcCtx *svc.ServiceContext logx.Logger } func NewMsgDistributorLogic(ctx context.Context, svcCtx *svc.ServiceContext) *MsgDistributorLogic { return &MsgDistributorLogic{ ctx: ctx, svcCtx: svcCtx, Logger: logx.WithContext(ctx), } } // 信息分发 func (l *MsgDistributorLogic) MsgDistributor(in *bxsubscribe.MsgDistributorReq) (*bxsubscribe.StatusResp, error) { // todo: add your logic here and delete this line return &bxsubscribe.StatusResp{}, nil }