crm-api-template-generator/backend/middleware/not-found.js

4 lines
103 B
JavaScript
Raw Permalink Normal View History

2023-11-29 20:05:48 +00:00
const notFound = (req, res) => res.status(404).send('Route does not exist')
module.exports = notFound