From 06e9ae397af22ecb74a9b0aa9c045c4500fbcea2 Mon Sep 17 00:00:00 2001 From: Kris <2893855659@qq.com> Date: Sun, 31 May 2026 22:20:23 +0800 Subject: [PATCH] =?UTF-8?q?refactor(channel/container):=20=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D=E7=BC=93=E5=AD=98=E7=BB=91=E5=AE=9A=E4=BB=93=E5=82=A8?= =?UTF-8?q?=E7=9A=84=E5=AF=BC=E5=85=A5=E8=B7=AF=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 调整了CachingBindingRepository的导入目录,将其从cache仓库迁移到persistence仓库 --- backend/package/yuxi/channel/container.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/package/yuxi/channel/container.py b/backend/package/yuxi/channel/container.py index 85286b20..78e1826b 100644 --- a/backend/package/yuxi/channel/container.py +++ b/backend/package/yuxi/channel/container.py @@ -43,7 +43,7 @@ from yuxi.channel.domain.repository import ( ) from yuxi.channel.domain.service.pipeline import Pipeline from yuxi.channel.infrastructure.agent.agent_adapter import AgentAdapter -from yuxi.channel.infrastructure.cache.repository.caching_binding_repository import CachingBindingRepository +from yuxi.channel.infrastructure.persistence.repository.caching_binding_repository import CachingBindingRepository from yuxi.channel.infrastructure.cache_infra.redis_bot_loop_guard import RedisBotLoopGuard from yuxi.channel.infrastructure.cache_infra.redis_cache import RedisCache from yuxi.channel.infrastructure.cache_infra.redis_circuit_breaker import RedisCircuitBreaker