File size: 151 Bytes
f0953a4
 
 
 
 
1
2
3
4
5
6
import { Response } from "express";

export const handleResponse = (res: Response, data: any, success: boolean) => {
  res.json({ success, data });
};