Automated Action 264e7b36d7 Create Todo application with FastAPI
- Set up project structure and dependencies
- Create Todo model with SQLAlchemy
- Implement CRUD operations for todos
- Create API endpoints for todos
- Set up Alembic migrations
- Update documentation

generated with BackendIM... (backend.im)
2025-05-13 05:51:01 +00:00

5 lines
177 B
Python

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