
- Set up project structure with FastAPI and SQLite - Implement Todo model, schemas, and CRUD operations - Set up Alembic for database migrations - Add health endpoint for application monitoring - Update README with project information generated with BackendIM... (backend.im)
3 lines
121 B
Python
3 lines
121 B
Python
from app.schemas.todo import TodoCreate, TodoResponse, TodoUpdate
|
|
|
|
__all__ = ["TodoCreate", "TodoResponse", "TodoUpdate"] |