
- Implement Todo CRUD API endpoints - Set up SQLite database with SQLAlchemy - Create Todo model and schemas - Configure Alembic migrations - Add comprehensive documentation 🤖 Generated with and Co-Authored by [BackendIM](https://backend.im)
9 lines
183 B
Python
9 lines
183 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api import todos
|
|
|
|
# API router
|
|
router = APIRouter()
|
|
|
|
# Include todo router
|
|
router.include_router(todos.router, prefix="/todos", tags=["todos"]) |