mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 06:07:21 +01:00
8 lines
138 B
JavaScript
8 lines
138 B
JavaScript
import {
|
|
NotFound,
|
|
} from '../libs/errors';
|
|
|
|
module.exports = function NotFoundMiddleware (req, res, next) {
|
|
next(new NotFound());
|
|
};
|