Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
AUXteam
/
Paper2Code
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Paper2Code
/
app
/
api
/
health
/
route.ts
AUXteam
Upload folder using huggingface_hub
d530f14
verified
about 2 months ago
raw
Copy download link
history
blame
contribute
delete
123 Bytes
import
{
NextResponse
}
from
'next/server'
;
export
async
function
GET
(
) {
return
NextResponse
.
json
({
status
:
'ok'
});
}