
- Create FastAPI application with CORS support - Implement Task model with SQLAlchemy - Set up database session and migrations with Alembic - Add CRUD endpoints for task management - Include health check and API documentation endpoints - Configure Ruff for code formatting and linting
4 lines
43 B
Python
4 lines
43 B
Python
from .task import Task
|
|
|
|
__all__ = ["Task"]
|