11 lines
323 B
JavaScript

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