Files
habitica/website/server/middlewares/api-v3/notFound.js

8 lines
148 B
JavaScript

import {
NotFound,
} from '../../libs/api-v3/errors';
module.exports = function NotFoundMiddleware (req, res, next) {
next(new NotFound());
};