Untitled

 avatar
unknown
plain_text
2 years ago
179 B
5
Indexable
const response = (status, msg, data, res) => {
  res.status(status).json({
    statuscode: status,
    message: msg,
    data: data,
  });
};

module.exports = response;
Editor is loading...
Leave a Comment