Automated Action 8ffce8f5fe Implement todo application with FastAPI and SQLite
- Set up project structure with FastAPI
- Create SQLite database models with SQLAlchemy
- Implement Alembic for migrations
- Create API endpoints for todo operations
- Add health check endpoint
- Update README.md with comprehensive documentation

generated with BackendIM... (backend.im)
2025-05-13 04:46:37 +00:00

3 lines
143 B
Python

from app.schemas.todo import TodoBase, TodoCreate, TodoUpdate, TodoResponse
__all__ = ["TodoBase", "TodoCreate", "TodoUpdate", "TodoResponse"]