11 lines
349 B
JavaScript
11 lines
349 B
JavaScript
const express = require('express');
|
|
const router = express.Router();
|
|
const { queryPatientDemographics, getPatientById } = require('../controllers/iti78');
|
|
|
|
// ITI-78: Mobile Patient Demographics Query
|
|
// TOOD: Cambiar ruta por ITI78
|
|
router.get('/iti78', queryPatientDemographics);
|
|
router.get('/iti78/:id', getPatientById);
|
|
|
|
module.exports = router;
|