
- Setup project structure with FastAPI - Create Todo model and database schemas - Implement CRUD operations for Todo items - Create API endpoints for Todo operations - Add health check endpoint - Configure Alembic for database migrations - Add detailed documentation in README.md
4 lines
106 B
Python
4 lines
106 B
Python
from app.schemas.todo import Todo, TodoCreate, TodoUpdate
|
|
|
|
__all__ = ["Todo", "TodoCreate", "TodoUpdate"]
|