fume-fhir-converter
Version:
FHIR-Utilized Mapping Engine - Community
14 lines • 476 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
/**
* © Copyright Outburn Ltd. 2022-2024 All Rights Reserved
* Project name: FUME-COMMUNITY
*/
const express_1 = tslib_1.__importDefault(require("express"));
const notFound = express_1.default.Router();
notFound.use((_req, res, next) => {
res.status(404).json({ message: 'not found' });
});
exports.default = notFound;
//# sourceMappingURL=notFound.js.map