aps-agent/server/state/__init__.py

10 lines
526 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# ============================================================
# 世界状态包(moduleId: server-state, 可重生 ✅)
# 对外暴露:WorldStore(原子 JSON 存储)与 seed_world(种子数据)
# ============================================================
from server.state.store import WorldStore # 世界状态存储器
from server.state.seed import seed_world # 种子数据工厂
# 显式导出清单(约束外部只用这两个入口)
__all__ = ["WorldStore", "seed_world"]