fume-fhir-converter
Version:
FHIR-Utilized Mapping Engine - Community
18 lines • 727 B
JavaScript
;
/**
* © Copyright Outburn Ltd. 2022-2024 All Rights Reserved
* Project name: FUME-COMMUNITY
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.routes = exports.notFound = void 0;
const tslib_1 = require("tslib");
const express_1 = tslib_1.__importDefault(require("express"));
const mapping_1 = tslib_1.__importDefault(require("./mapping"));
const notFound_1 = tslib_1.__importDefault(require("./notFound"));
exports.notFound = notFound_1.default;
const root_1 = tslib_1.__importDefault(require("./root"));
const routes = express_1.default.Router();
exports.routes = routes;
routes.use('/Mapping/', mapping_1.default);
routes.use('/', root_1.default);
//# sourceMappingURL=index.js.map