14 lines
395 B
Python
14 lines
395 B
Python
# -*- 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__")
|