export function endWithStatusAndBody()

in src/server/helpers/http.ts [3:7]


export function endWithStatusAndBody(res: http.ServerResponse, status: number, message: string) {
  res.statusCode = status;
  res.write(JSON.stringify({ error: message }));
  res.end();
}