refactor(channel/container): 修复缓存绑定仓储的导入路径

调整了CachingBindingRepository的导入目录,将其从cache仓库迁移到persistence仓库
This commit is contained in:
Kris 2026-05-31 22:20:23 +08:00
parent cf723fcc44
commit 06e9ae397a

View File

@ -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