package cs import ( "context" "ylink/bff/cmdbff/api/internal/svc" "ylink/bff/cmdbff/api/internal/types" "github.com/zeromicro/go-zero/core/logx" ) type SendMsgLogic struct { logx.Logger ctx context.Context svcCtx *svc.ServiceContext } func NewSendMsgLogic(ctx context.Context, svcCtx *svc.ServiceContext) *SendMsgLogic { return &SendMsgLogic{ Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx, } } func (l *SendMsgLogic) SendMsg(req *types.CsSendMsgReq) error { // todo: add your logic here and delete this line return nil }