errorHandler.js 114 bytes
const notFound = (err, req, res, next) => {
  res.sendStatus(404);
  res.end();
}
module.exports = notFound;