
- Set up project structure with FastAPI - Create Todo model with SQLAlchemy - Set up Alembic for database migrations - Implement CRUD operations for todos - Add health endpoint - Update README with setup and usage instructions generated with BackendIM... (backend.im)
3 lines
166 B
Python
3 lines
166 B
Python
from app.crud.todo import get_todo, get_todos, create_todo, update_todo, delete_todo
|
|
|
|
__all__ = ["get_todo", "get_todos", "create_todo", "update_todo", "delete_todo"] |