Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Wauplin/responses.js
plop-internal
/
responses.js
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d28f5fa
responses.js
/
src
/
routes
/
health.ts
Wauplin
HF Staff
Upload folder using huggingface_hub
5979e6b
verified
19 days ago
raw
Copy download link
history
blame
Safe
133 Bytes
import
type
{
Request
,
Response
}
from
"express"
;
export
function
getHealth
(
req: Request, res: Response
):
void
{
res.
send
(
"OK"
);
}