
- Add SQLite database configuration - Create Todo model, schemas, and CRUD operations - Implement Todo API endpoints - Add Alembic migration for todo table - Set up database initialization in main.py - Update README with project details and instructions - Add pyproject.toml with Ruff configuration
6 lines
172 B
Python
6 lines
172 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.api_v1.endpoints import todos
|
|
|
|
api_router = APIRouter()
|
|
api_router.include_router(todos.router, prefix="/todos", tags=["todos"]) |