mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-27 07:58:31 -06:00
8 lines
208 B
TypeScript
8 lines
208 B
TypeScript
import { fileStorageService } from "@/services/fileStorage/fileStorageService";
|
|
|
|
export async function GET() {
|
|
const courses = await fileStorageService.getCourseNames();
|
|
|
|
return Response.json(courses);
|
|
}
|