import { Response } from "express"; export function networkError(res: Response, error: string) { res.status(500).json({ msg: "Internal network error", reason: JSON.stringify(error), }); }