paper2code-cli / app /api /test-me /route.ts
Leon4gr45's picture
Upload folder using huggingface_hub (part 8)
a72140d verified
Raw
History Blame Contribute Delete
128 Bytes
import { NextResponse } from "next/server";
export async function GET() {
return NextResponse.json({ message: "TEST OK" });
}