feat: 初始提交 - 科创企业特有风险的识别与管理 (数智风控系统)
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
"""
|
||||
🛡️ 科创企业智能风控与核保系统 - 主入口转接脚本
|
||||
自动重定向并加载 `🏠_系统首页.py`
|
||||
"""
|
||||
import runpy
|
||||
import os
|
||||
import sys
|
||||
|
||||
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
|
||||
|
||||
home_script = os.path.join(os.path.dirname(os.path.abspath(__file__)), "🏠_系统首页.py")
|
||||
runpy.run_path(home_script, run_name="__main__")
|
||||
Reference in New Issue
Block a user