Files
scrypted/plugins/core/src/http-helpers.ts
Koushik Dutta a46b2811ed initial commit
2021-08-24 21:22:41 -07:00

9 lines
226 B
TypeScript

import { HttpResponse } from "@scrypted/sdk";
export function sendJSON(res: HttpResponse, json: any) {
res.send(JSON.stringify(json), {
headers: {
'Content-Type': 'application/json',
}
})
}