csfetchhistorymsglogic.go 634 B

123456789101112131415161718192021222324252627282930
  1. package logic
  2. import (
  3. "context"
  4. "ylink/apis/cmd/internal/svc"
  5. "ylink/apis/cmd/pb"
  6. "github.com/zeromicro/go-zero/core/logx"
  7. )
  8. type CsFetchHistoryMsgLogic struct {
  9. ctx context.Context
  10. svcCtx *svc.ServiceContext
  11. logx.Logger
  12. }
  13. func NewCsFetchHistoryMsgLogic(ctx context.Context, svcCtx *svc.ServiceContext) *CsFetchHistoryMsgLogic {
  14. return &CsFetchHistoryMsgLogic{
  15. ctx: ctx,
  16. svcCtx: svcCtx,
  17. Logger: logx.WithContext(ctx),
  18. }
  19. }
  20. func (l *CsFetchHistoryMsgLogic) CsFetchHistoryMsg(in *pb.CsFetchHistoryMsgReq) (*pb.CmdResp, error) {
  21. // todo: add your logic here and delete this line
  22. return &pb.CmdResp{}, nil
  23. }