
- Set up project structure with FastAPI, SQLAlchemy, and Alembic - Create Todo model and database operations - Implement CRUD API endpoints for Todo items - Configure database migrations - Add comprehensive documentation 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
6 lines
168 B
Python
6 lines
168 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.v1.endpoints import todos
|
|
|
|
api_router = APIRouter()
|
|
api_router.include_router(todos.router, prefix="/todos", tags=["todos"]) |