
Create a full-featured task management API with the following components: - RESTful CRUD operations for tasks - Task status and priority management - SQLite database with SQLAlchemy ORM - Alembic migrations - Health check endpoint - Comprehensive API documentation
7 lines
170 B
Python
7 lines
170 B
Python
"""
|
|
Import all the models, so that Base has them before being
|
|
imported by Alembic
|
|
"""
|
|
|
|
from app.db.base_class import Base # noqa
|
|
from app.models.task import Task # noqa |