11 lines
431 B
Python
11 lines
431 B
Python
|
|
"""infrastructure 层:scheduler 限界上下文的装配容器。
|
|||
|
|
|
|||
|
|
本包是六边形架构的"唯一装配点"(对齐 ``external_systems/infrastructure``),
|
|||
|
|
负责将 persistence 仓储 / runtime 横切关注点装配为 use_cases service。
|
|||
|
|
|
|||
|
|
依赖方向:依赖 ``adapters/persistence`` / ``framework/runtime`` / ``use_cases/services`` /
|
|||
|
|
``config.app``,不依赖 ``server/``。
|
|||
|
|
"""
|
|||
|
|
|
|||
|
|
from __future__ import annotations
|