Files
quicklanch-server/dist/app/middlewares/not_found_api.js
T

9 lines
205 B
JavaScript
Raw Normal View History

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