Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
huggingchat
/
chat-ui
like
1.12k
Running
App
Files
Files
Community
682
6d91018
chat-ui
/
src
/
routes
/
healthcheck
/
+server.ts
nsarrazin
HF staff
Add the simplest healthcheck route (#1089)
6d91018
unverified
11 months ago
raw
Copy download link
history
blame
Safe
77 Bytes
export
async
function
GET
(
) {
return
new
Response
(
"OK"
, {
status
:
200
});
}