errorHandler.js 114 Bytes
Newer Older
Athanasios's avatar
Athanasios committed
1
2
3
4
5
6
const notFound = (err, req, res, next) => {
  res.sendStatus(404);
  res.end();
}

module.exports = notFound;