12 lines
503 B
Python
12 lines
503 B
Python
|
|
"""adapters 适配器层:实现 core 端口,隔离基础设施细节。
|
|||
|
|
|
|||
|
|
本包是 scheduler 限界上下文的适配器层,对齐 ``external_systems/adapters/``
|
|||
|
|
的分层结构。当前仅包含 ``persistence`` 子包(SQLAlchemy 仓储适配器与
|
|||
|
|
UnitOfWork),后续可按需扩展 ``messaging`` 等其他适配器。
|
|||
|
|
|
|||
|
|
依赖方向:依赖 ``core`` 端口与 ``repositories`` / ``storage`` 基础设施,
|
|||
|
|
不依赖 ``use_cases`` / ``framework``。
|
|||
|
|
"""
|
|||
|
|
|
|||
|
|
from __future__ import annotations
|