Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
huggingchat/chat-ui
WOosts
/
chat-ui
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
chat-ui
/
src
/
routes
/
healthcheck
/
+server.ts
nsarrazin
HF Staff
Add the simplest healthcheck route (#1089)
6d91018
unverified
12 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
77 Bytes
export
async
function
GET
(
) {
return
new
Response
(
"OK"
, {
status
:
200
});
}