
- Created project structure with FastAPI setup - Added SQLite database connection with SQLAlchemy ORM - Implemented Todo model and schemas - Added CRUD operations for Todo items - Created API endpoints for Todo management - Added health check endpoint - Configured Alembic for database migrations - Updated project documentation in README.md
7 lines
230 B
Python
7 lines
230 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.v1 import health, todos
|
|
|
|
router = APIRouter()
|
|
router.include_router(health.router, prefix="/health", tags=["health"])
|
|
router.include_router(todos.router, prefix="/todos", tags=["todos"]) |