10 lines
237 B
Python
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']
|
|
|