update file struct

This commit is contained in:
2025-08-22 11:20:41 +08:00
parent 786c669d62
commit 608d9947f1
25 changed files with 2605 additions and 3195 deletions

10
config.py Normal file
View File

@@ -0,0 +1,10 @@
# project/config.py
import sys
from pathlib import Path
# 获取项目根目录
PROJECT_ROOT = Path(__file__).parent
# 添加项目根目录到 Python 路径
if str(PROJECT_ROOT) not in sys.path:
sys.path.append(str(PROJECT_ROOT))