This commit is contained in:
2024-08-28 14:22:56 -06:00
parent 1051c4fb6e
commit 10afc745a9
5 changed files with 60 additions and 48 deletions

View File

@@ -1,3 +1,6 @@
import { fileStorageService } from "@/services/fileStorage/fileStorageService";
export async function GET() {
return Response.json([]);
const courses = await fileStorageService.loadSavedCourses();
return Response.json(courses);
}