Untitled
Anonymous
plain_text
11/22/2023 6:44 AM
240 B
12
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