23 lines
560 B
Python
23 lines
560 B
Python
# -*- coding: utf-8 -*-
|
||
"""runtime 包:元景 W-10 运行时执行引擎(服务端辅助层)。
|
||
|
||
三处同步注册之②:本文件导出全部 async 函数,供 .dspy 直接调用(否则 NameError)。
|
||
"""
|
||
from .runtime_service import (
|
||
build_entity_tree,
|
||
load_world_runtime,
|
||
runtime_status,
|
||
runtime_event_dispatch,
|
||
runtime_control,
|
||
)
|
||
from .init import load_runtime
|
||
|
||
__all__ = [
|
||
'build_entity_tree',
|
||
'load_world_runtime',
|
||
'runtime_status',
|
||
'runtime_event_dispatch',
|
||
'runtime_control',
|
||
'load_runtime',
|
||
]
|