from fastapi import APIRouter from app.services.student_memory import StudentMemoryService router = APIRouter(prefix="/review", tags=["review"]) @router.get("/daily") async def get_daily_review(): return {"concepts_to_review": await StudentMemoryService().get_daily_review()}