Automated Action d2d0b364aa Create Todo application with FastAPI and SQLAlchemy
Generated with and Co-Authored by [BackendIM](https://backend.im)
2025-05-11 19:12:20 +00:00

6 lines
157 B
Python

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