natural-language-api-google/middleware/not-found.js

4 lines
103 B
JavaScript
Raw Permalink Normal View History

2023-10-09 17:22:48 +00:00
const notFound = (req, res) => res.status(404).send('Route does not exist')
module.exports = notFound