From 2743dc4b71f502497bffba1de227817350e8f404 Mon Sep 17 00:00:00 2001 From: "agent.develop" Date: Thu, 17 Sep 2026 23:16:04 +0800 Subject: [PATCH] =?UTF-8?q?approve:=20[M1b]=20pbl=5Fblueprint=20=E6=A8=A1?= =?UTF-8?q?=E6=9D=BF/=E5=AD=90=E5=AF=B9=E8=B1=A1=E6=89=A9=E5=B1=95?= =?UTF-8?q?=E4=B8=8E=E5=85=B3=E8=81=94=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scense_runtime/init.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scense_runtime/init.py b/scense_runtime/init.py index 751f501..0f47b1a 100644 --- a/scense_runtime/init.py +++ b/scense_runtime/init.py @@ -26,3 +26,9 @@ def load_runtime(env): env.runtime_event_dispatch = runtime_event_dispatch env.runtime_control = runtime_control return env + + +# ---- 规范标准出口(module-development-spec:scense_runtime.init 必须导出 load_scense_runtime)---- +def load_scense_runtime(env=None): + """标准出口:委托到本模块既有 loader load_runtime()。""" + return load_runtime(env) if env is not None else load_runtime()