11 lines
324 B
JavaScript
11 lines
324 B
JavaScript
const express = require('express');
|
|
const router = express.Router();
|
|
const { createPatient, updatePatient } = require('../controllers/iti104');
|
|
|
|
// ITI-104: Patient Identity Feed FHIR
|
|
// TODO: Cambiar ruta por ITI104
|
|
router.post('/iti104', createPatient);
|
|
router.put('/iti104/:id', updatePatient);
|
|
|
|
module.exports = router;
|