const Plantel = require('../../db/tables/Plantel') const get = async () => { return Plantel.findAll() .then((res) => { return res }) .catch((err) => {}) } module.exports = get