
- 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
70 B
Python
4 lines
70 B
Python
from .tasks import router as tasks_router
|
|
|
|
__all__ = ["tasks_router"]
|