mirror of
https://github.com/koush/scrypted.git
synced 2026-02-17 12:12:16 +00:00
9 lines
226 B
TypeScript
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',
|
|
}
|
|
})
|
|
} |