// Code scaffolded by goctl. Safe to edit. // goctl 1.9.2 package ai import ( "context" "github.com/youruser/base/internal/svc" "github.com/youruser/base/internal/types" "github.com/zeromicro/go-zero/core/logx" ) type AiConversationListLogic struct { logx.Logger ctx context.Context svcCtx *svc.ServiceContext } // 获取对话列表 func NewAiConversationListLogic(ctx context.Context, svcCtx *svc.ServiceContext) *AiConversationListLogic { return &AiConversationListLogic{ Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx, } } func (l *AiConversationListLogic) AiConversationList(req *types.AIConversationListRequest) (resp *types.AIConversationListResponse, err error) { // todo: add your logic here and delete this line return }