Spaces:
Sleeping
Sleeping
File size: 332 Bytes
d26f541 d35e9ec |
1 2 3 4 5 6 7 8 9 10 |
import type { ServerResponse } from 'http';
export function jsonResponse(res: ServerResponse, statusCode: number, data: any) {
res.statusCode = statusCode;
res.setHeader('Content-Type', 'application/json');
res.end(JSON.stringify(data));
}
export const ALLOWED_CLASSIFICATIONS = new Set(['compliance', 'pitti_compliance']);
|