enterprisecargo / src /utils /asyncHandler.js
vish85521's picture
Upload 64 files
eeb3436 verified
Raw
History Blame Contribute Delete
210 Bytes
function asyncHandler(handler) {
return async (req, res, next) => {
try {
await handler(req, res, next);
} catch (error) {
next(error);
}
};
}
module.exports = {
asyncHandler,
};