Error.ts 201 B

12345678
  1. import { Response } from "express";
  2. export function networkError(res: Response, error: string) {
  3. res.status(500).json({
  4. msg: "Internal network error",
  5. reason: JSON.stringify(error),
  6. });
  7. }