Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
AUXteam
/
Paper2Code
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Paper2Code
/
app
/
api
/
test-me
/
route.ts
AUXteam
Upload folder using huggingface_hub
d31277c
verified
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
128 Bytes
import
{
NextResponse
}
from
"next/server"
;
export
async
function
GET
(
) {
return
NextResponse
.
json
({
message
:
"TEST OK"
});
}