package logic import ( "context" "jyBXSubscribe/api/internal/svc" "jyBXSubscribe/api/internal/types" "github.com/zeromicro/go-zero/core/logx" ) type MsgDistributorLogic struct { logx.Logger ctx context.Context svcCtx *svc.ServiceContext } func NewMsgDistributorLogic(ctx context.Context, svcCtx *svc.ServiceContext) *MsgDistributorLogic { return &MsgDistributorLogic{ Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx, } } func (l *MsgDistributorLogic) MsgDistributor(req *types.MsgDistributor) (resp *types.CommonResp, err error) { // todo: add your logic here and delete this line return }