
- Set up FastAPI project structure - Configure SQLAlchemy with SQLite - Create Todo model and schemas - Implement CRUD operations - Add API endpoints for Todo management - Configure Alembic for database migrations - Add health check endpoint - Add comprehensive documentation
5 lines
156 B
Python
5 lines
156 B
Python
from app.api.routes.todo import router as todo_router
|
|
from app.api.routes.health import router as health_router
|
|
|
|
__all__ = ["todo_router", "health_router"]
|