
- Added filtering and pagination for todo listings - Fixed Alembic migration setup - Enhanced CRUD operations - Updated documentation with comprehensive README - Linted code with Ruff
5 lines
200 B
Python
5 lines
200 B
Python
# Import all the models, so that Base has them before being
|
|
# imported by Alembic
|
|
from app.db.base import Base # noqa
|
|
from app.models.user import User # noqa
|
|
from app.models.todo import Todo # noqa |