
- Set up project structure with FastAPI app - Create SQLite database models with SQLAlchemy - Set up Alembic migrations - Implement CRUD endpoints for todo items - Add health check endpoint - Update README with setup instructions generated with BackendIM... (backend.im)
6 lines
165 B
Python
6 lines
165 B
Python
from fastapi import APIRouter
|
|
from app.api.endpoints import todos
|
|
|
|
api_router = APIRouter()
|
|
|
|
api_router.include_router(todos.router, prefix="/todos", tags=["todos"]) |