import { fileStorageService } from "@/services/fileStorage/fileStorageService"; import { withErrorHandling } from "@/services/withErrorHandling"; export const GET = async () => await withErrorHandling(async () => { const directories = await fileStorageService.getEmptyDirectories(); return Response.json(directories); });