todoapp-ns86xt/app/schemas/__init__.py
Automated Action 68392c171a Add complete FastAPI todo app with CRUD operations
- Implement Todo model with SQLAlchemy
- Create Pydantic schemas for request/response validation
- Add complete CRUD API endpoints (/api/v1/todos)
- Include proper error handling and HTTP status codes
- Set up proper project structure with organized modules
- All code linted and formatted with ruff
2025-06-20 23:26:54 +00:00

3 lines
132 B
Python

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