
- Implement Todo database model with SQLAlchemy - Set up Alembic for database migrations - Create CRUD operations for Todo items - Implement RESTful API endpoints - Add health check endpoint - Include comprehensive README with usage instructions
3 lines
113 B
Python
3 lines
113 B
Python
from app.schemas.todo import TodoCreate, TodoRead, TodoUpdate
|
|
|
|
__all__ = ["TodoCreate", "TodoRead", "TodoUpdate"] |