
- Set up project structure with FastAPI and SQLite - Created Todo model and database schemas - Implemented CRUD operations for Todo items - Added Alembic for database migrations - Added health check endpoint - Used Ruff for code linting and formatting - Updated README with project documentation
4 lines
150 B
Python
4 lines
150 B
Python
from app.schemas.todo import Todo, TodoBase, TodoCreate, TodoInDB, TodoUpdate
|
|
|
|
__all__ = ["Todo", "TodoBase", "TodoCreate", "TodoInDB", "TodoUpdate"]
|