Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jacqueshuang
/
ng
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
ng
/
backend
/
src
/
utils
/
responseHandler.ts
epii-1
222222
f0953a4
4 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
151 Bytes
import
{
Response
}
from
"express"
;
export
const
handleResponse
= (
res: Response, data:
any
, success:
boolean
) => {
res.
json
({ success, data });
};