first commit
This commit is contained in:
8
backend/app/models/__init__.py
Normal file
8
backend/app/models/__init__.py
Normal file
@@ -0,0 +1,8 @@
|
||||
"""SQLAlchemy models - export Base and all models for create_all."""
|
||||
|
||||
from app.models.database import Base, get_db, init_db, engine, async_session_maker
|
||||
from app.models.case import Case
|
||||
from app.models.screenshot import Screenshot
|
||||
from app.models.transaction import Transaction
|
||||
|
||||
__all__ = ["Base", "Case", "Screenshot", "Transaction", "get_db", "init_db", "engine", "async_session_maker"]
|
||||
Reference in New Issue
Block a user