
- Setup project structure with FastAPI - Create Todo model and database schemas - Implement CRUD operations for Todo items - Create API endpoints for Todo operations - Add health check endpoint - Configure Alembic for database migrations - Add detailed documentation in README.md
7 lines
185 B
Python
7 lines
185 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.v1.endpoints import todos
|
|
|
|
api_router = APIRouter(prefix="/api/v1")
|
|
api_router.include_router(todos.router, prefix="/todos", tags=["todos"])
|