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...
5a8d324
cached-generation
/
routes
/
root.js
enzostvs
HF Staff
run prettier
5a8d324
7 months ago
raw
Copy download link
history
blame
Safe
154 Bytes
"use strict"
;
module
.
exports
=
async
function
(
fastify, opts
) {
fastify.
get
(
"/"
,
async
function
(
request, reply
) {
return
{
root
:
true
};
});
};