package logic import ( "context" "github.com/zeromicro/go-zero/core/logx" "bp.jydev.jianyu360.cn/SocialPlatform/knowledgeBase/rpc/knowledge/internal/svc" "bp.jydev.jianyu360.cn/SocialPlatform/knowledgeBase/rpc/knowledge/knowledge" ) type CommonPhrasesListLogic struct { ctx context.Context svcCtx *svc.ServiceContext logx.Logger } func NewCommonPhrasesListLogic(ctx context.Context, svcCtx *svc.ServiceContext) *CommonPhrasesListLogic { return &CommonPhrasesListLogic{ ctx: ctx, svcCtx: svcCtx, Logger: logx.WithContext(ctx), } } // 客服话术列表 func (l *CommonPhrasesListLogic) CommonPhrasesList(in *knowledge.CommonPhrasesListReq) (*knowledge.CommonPhrasesListResp, error) { // todo: add your logic here and delete this line return &knowledge.CommonPhrasesListResp{}, nil }