ayushkokande's picture
Upload folder using huggingface_hub
4ce3e23 verified
Raw
History Blame Contribute Delete
257 Bytes
import { listSharedDocuments } from "@/lib/shared-documents";
export const runtime = "nodejs";
export const dynamic = "force-dynamic";
export async function GET() {
const documents = await listSharedDocuments();
return Response.json({ documents });
}