todoapp-ns86xt/app/models/__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
42 B
Python

from .todo import Todo
__all__ = ["Todo"]