
- Set up project structure and FastAPI application - Create database models with SQLAlchemy - Set up Alembic for database migrations - Create API endpoints for todo CRUD operations - Add health check endpoint - Add unit tests for API endpoints - Configure Ruff for linting and formatting
2 lines
94 B
Python
2 lines
94 B
Python
from app.schemas.todo import TodoBase, TodoCreate, TodoUpdate, TodoInDB, TodoResponse # noqa
|