Automated Action ba478ce2d3 Implement Task Manager API with FastAPI and SQLite
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
2025-05-30 22:50:55 +00:00

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