Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
enzostvs
/
cached-generation
like
1
Running
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
refs/pr/1
cached-generation
/
routes
/
root.js
enzostvs
HF staff
try another way
f4aba6e
5 months ago
raw
Copy download link
history
blame
Safe
150 Bytes
'use strict'
module
.
exports
=
async
function
(
fastify, opts
) {
fastify.
get
(
'/'
,
async
function
(
request, reply
) {
return
{
root
:
true
}
})
}