10 lines
290 B
JavaScript
10 lines
290 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.notFoundMiddleware = notFoundMiddleware;
|
|
function notFoundMiddleware(req, res) {
|
|
res.status(404).json({
|
|
error: `Route ${req.method} ${req.path} not found`,
|
|
code: 'NOT_FOUND',
|
|
});
|
|
}
|