初始提交

This commit is contained in:
fanbook-wangdage
2025-12-28 17:01:42 +08:00
parent 3cace74c08
commit d67e42b067
20 changed files with 1284 additions and 0 deletions

8
app/config.py Normal file
View File

@@ -0,0 +1,8 @@
from app.config_loader import config_loader
# 使用配置加载器提供兼容的接口
class Config:
SECRET_KEY = config_loader.SECRET_KEY
MONGO_URI = config_loader.MONGO_URI
TIMEZONE = config_loader.TIMEZONE
ISTEST_MODE = config_loader.ISTEST_MODE