mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-18 03:29:15 +00:00
12 lines
278 B
JavaScript
12 lines
278 B
JavaScript
const {getData} = require('./mysql')
|
|
|
|
const get = (step) => new Promise((resolve, reject) => {
|
|
if(process.env.DATABASE === 'mysql'){
|
|
getData(step,(dt) => {
|
|
console.log('--->datos--',dt)
|
|
resolve(dt)
|
|
});
|
|
}
|
|
})
|
|
|
|
module.exports = {get} |