UNPKG

@unito/integration-sdk

Version:

Integration SDK

9 lines (8 loc) 193 B
function notFound(req, res, _next) { const error = { code: '404', message: `Path ${req.path} not found.`, }; res.status(404).json(error); } export default notFound;