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());
|
|
};
|