2026-06-22 20:07:20 +08:00
|
|
|
|
"""adapters 适配器层:实现 core 端口,隔离基础设施细节。
|
|
|
|
|
|
|
|
|
|
|
|
本包是 scheduler 限界上下文的适配器层,对齐 ``external_systems/adapters/``
|
2026-07-13 17:32:29 +08:00
|
|
|
|
的分层结构。当前仅包含 ``persistence`` 子包(SQLAlchemy 仓储适配器),
|
|
|
|
|
|
事务管理已迁移至共享 ``yuxi.storage.transactions`` 基础设施,后续可按需扩展
|
|
|
|
|
|
``messaging`` 等其他适配器。
|
2026-06-22 20:07:20 +08:00
|
|
|
|
|
|
|
|
|
|
依赖方向:依赖 ``core`` 端口与 ``repositories`` / ``storage`` 基础设施,
|
|
|
|
|
|
不依赖 ``use_cases`` / ``framework``。
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
from __future__ import annotations
|