
- 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
9 lines
191 B
Python
9 lines
191 B
Python
from app.crud.todo import (
|
|
create_todo,
|
|
get_todo,
|
|
get_todos,
|
|
update_todo,
|
|
delete_todo,
|
|
)
|
|
|
|
__all__ = ["create_todo", "get_todo", "get_todos", "update_todo", "delete_todo"] |