60f34dafb0
* Revert "Revert "Deprecate API v2"" * fix path in shops controller
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());
|
|
};
|