13 lines
366 B
Python
13 lines
366 B
Python
"""
|
|
数据库连接管理
|
|
|
|
P3-1 Fix: 统一使用 config.py 中的 Settings 类,消除配置重复定义。
|
|
"""
|
|
|
|
from app.config import settings
|
|
from packages.adapters.sqlalchemy_impl.session import build_session_factory
|
|
|
|
|
|
# P3-1 Fix: 直接使用 settings 中的配置,而不是重复定义
|
|
_engine, _SessionLocal = build_session_factory(settings.DATABASE_URL)
|