8 lines
226 B
Python
8 lines
226 B
Python
"""Compatibility imports; new code should use :mod:`app.database`."""
|
|
|
|
from .database import Base, SessionLocal, engine, get_session
|
|
|
|
get_db = get_session
|
|
|
|
__all__ = ["Base", "SessionLocal", "engine", "get_db", "get_session"]
|