Files
servicio_social_api/server/controller/Status/get.js
T

6 lines
110 B
JavaScript
Raw Normal View History

2020-11-15 23:47:09 -06:00
const Status = require('../../db/tablas/Status');
2021-01-14 03:13:37 -06:00
const get = () => Status.findAll();
2020-11-15 23:47:09 -06:00
module.exports = get;