Files
tg_loader/web/utils/database.py
2025-12-04 00:12:56 +03:00

10 lines
237 B
Python

"""
Database utilities for web interface (wrapper over shared module)
Uses unified module from shared/database/session.py
"""
from shared.database.session import get_db
# Export function for use in FastAPI Depends
__all__ = ['get_db']