Files
pcpuma_acatlan_api/server/controller/Carrera/get.js
T

6 lines
119 B
JavaScript
Raw Normal View History

2022-01-24 00:13:19 -06:00
const Carrera = require('../../db/tablas/Carrera');
const get = async () => Carrera.findAll();
module.exports = get;