Files
premiaciones_api/server/controller/Premiacion/premiaciones.js
T

6 lines
122 B
JavaScript
Raw Normal View History

2022-05-13 22:10:54 -05:00
const Premiacion = require('../../db/tablas/Premiacion');
2022-05-16 23:09:46 -05:00
const get = () => Premiacion.findAll();
2022-05-13 22:10:54 -05:00
module.exports = get;