6 lines
233 B
Python
6 lines
233 B
Python
# Import models to ensure they are registered with SQLAlchemy
|
|
from app.models.category import Category
|
|
from app.models.item import Item
|
|
from app.models.transaction import Transaction, TransactionType
|
|
from app.models.user import User
|