mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-28 05:45:36 +00:00
8 lines
148 B
JavaScript
8 lines
148 B
JavaScript
import {
|
|||
NotFound,
|
|||
} from '../../libs/api-v3/errors';
|
|||
|
|||
module.exports = function NotFoundMiddleware (req, res, next) {
|
|||
next(new NotFound());
|
|||
};
|