对服务器API调用文件进行拆解与更新

This commit is contained in:
2025-09-12 23:31:26 +08:00
parent 740a4f67aa
commit f7b4f7158a
9 changed files with 713 additions and 221 deletions

View File

@@ -1,3 +1,5 @@
import platform
# 项目配置
PROFECT_NAME : str = 'SolianForDesktop'
PROFECT_VERSION : str = '1.0(alpha)'
@@ -8,3 +10,5 @@ WINDOW_HEIGHT : int = 500
PYTHON_VERSION_MIN : tuple[int,int] = (3, 7)
PYTHON_VERSION_MAX : tuple[int,int] = (0, 0)
LIB_LIST : list[str] = ['flask']
DOMAIN : str = 'https://solian.app/api'
UA : str = f"SolianForPythonApp/0.000.001 ({platform.system()})"