28 lines
706 B
Python
28 lines
706 B
Python
#!/usr/bin/env python3
|
||
# -*- coding: utf-8 -*-
|
||
"""pbl_domain_ext —— world/scene/entity 薄扩展:租户/班级/团队关联(M8,不改基表)
|
||
|
||
注册三处同步之 ②:必须导出 init.py 里的全部契约函数,漏一行 .dspy 调用即 NameError。
|
||
"""
|
||
from pbl_domain_ext.init import load_pbl_domain_ext
|
||
from pbl_domain_ext.api import (
|
||
pbl_tenant_upsert,
|
||
pbl_class_save,
|
||
pbl_class_list,
|
||
pbl_team_save,
|
||
pbl_team_list,
|
||
pbl_domain_materialize_game_definition,
|
||
|
||
)
|
||
|
||
__all__ = [
|
||
'load_pbl_domain_ext',
|
||
'pbl_tenant_upsert',
|
||
'pbl_class_save',
|
||
'pbl_class_list',
|
||
'pbl_team_save',
|
||
'pbl_team_list',
|
||
'pbl_domain_materialize_game_definition',
|
||
|
||
]
|