"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const express_1 = require("express"); const Prestamo_1 = require("../controller/Prestamo"); const router = express_1.Router(); router.post('/', Prestamo_1.PrestamoController.crear); router.put('/regreso', Prestamo_1.PrestamoController.regreso); router.put('/confirmar', Prestamo_1.PrestamoController.confirmar); router.get('/estatus', Prestamo_1.PrestamoController.estatus); router.put('/cancelar', Prestamo_1.PrestamoController.cancelar); exports.default = router; //# sourceMappingURL=prestamo.js.map