UNPKG

fume-fhir-converter

Version:

FHIR-Utilized Mapping Engine - Community

21 lines (15 loc) 366 B
/** * © Copyright Outburn Ltd. 2022-2024 All Rights Reserved * Project name: FUME-COMMUNITY */ import express from 'express'; import mapping from './mapping'; import notFound from './notFound'; import root from './root'; const routes = express.Router(); routes.use('/Mapping/', mapping); routes.use('/', root); export { notFound, routes };