
- Add project structure with FastAPI, SQLAlchemy, and Alembic - Implement Todo model with CRUD operations - Add REST API endpoints for todo management - Configure SQLite database with migrations - Include health check and API documentation endpoints - Add CORS middleware for all origins - Format code with Ruff
4 lines
95 B
Python
4 lines
95 B
Python
from .todo import Todo, TodoCreate, TodoUpdate
|
|
|
|
__all__ = ["Todo", "TodoCreate", "TodoUpdate"]
|