
Create a simple Todo API with FastAPI and SQLite with CRUD functionality, health check, error handling, and API documentation.
3 lines
52 B
Python
3 lines
52 B
Python
from app.models.todo import Todo
|
|
|
|
__all__ = ["Todo"] |