todoapp-us6a2a/app/models/__init__.py
Automated Action e01f3a4d57 Create FastAPI Todo App
Create a simple Todo API with FastAPI and SQLite with CRUD functionality,
health check, error handling, and API documentation.
2025-05-31 21:13:37 +00:00

3 lines
52 B
Python

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