24 lines
621 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.

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""pbl_scense_ext —— scense/scense_game 前端覆盖层与页面注册(M9)
注册三处同步之 ②:必须导出 init.py 里的全部契约函数,漏一行 .dspy 调用即 NameError。
"""
from pbl_scense_ext.init import load_pbl_scense_ext
from pbl_scense_ext.api import (
pbl_session_context_get,
pbl_page_registry_list,
pbl_playtest_feedback_save,
pbl_overlay_bootstrap,
)
__all__ = [
'load_pbl_scense_ext',
'pbl_session_context_get',
'pbl_page_registry_list',
'pbl_playtest_feedback_save',
'pbl_overlay_bootstrap',
]