AUXteam commited on
Commit
d31277c
·
verified ·
1 Parent(s): 4000914

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. app/api/test-me/route.ts +4 -0
app/api/test-me/route.ts ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ import { NextResponse } from "next/server";
2
+ export async function GET() {
3
+ return NextResponse.json({ message: "TEST OK" });
4
+ }