todoapp-us6a2a/app/api/v1/router.py
Automated Action e01f3a4d57 Create FastAPI Todo App
Create a simple Todo API with FastAPI and SQLite with CRUD functionality,
health check, error handling, and API documentation.
2025-05-31 21:13:37 +00:00

8 lines
225 B
Python

from fastapi import APIRouter
from app.api.v1 import health, todos
api_router = APIRouter()
api_router.include_router(health.router, tags=["health"])
api_router.include_router(todos.router, prefix="/todos", tags=["todos"])