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