const notFound = (req, res, next) => { res.status(404).json({ message: 'Sorry Route is not found!! 😴😴😴', success: false, error: '', }); }; export default notFound;