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

10 lines
161 B
JavaScript
Raw Normal View History

2020-11-15 23:47:09 -06:00
const Status = require('../../db/tablas/Status');
const get = () => {
return Status.findAll().then((res) => {
return res;
});
};
module.exports = get;