Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Wauplin
/
responses.js
like
13
Running
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
d28f5fa
responses.js
/
src
/
routes
/
health.ts
Wauplin
HF Staff
Upload folder using huggingface_hub
5979e6b
verified
20 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"
);
}