scense_runtime/runtime/__init__.py
2026-08-29 21:10:24 +08:00

23 lines
560 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.

# -*- 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',
]