[backend] feat: 添加项目基础配置

This commit is contained in:
xsl
2026-01-26 08:09:35 +08:00
parent e4b59c5ee4
commit 827549fa0d
7 changed files with 86 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
from .settings import get_settings, Settings
from .database import get_db, init_db, Base, engine, AsyncSessionLocal
__all__ = [
"get_settings",
"Settings",
"get_db",
"init_db",
"Base",
"engine",
"AsyncSessionLocal",
]