mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-18 03:29:15 +00:00
12 lines
310 B
JavaScript
12 lines
310 B
JavaScript
const connectionReady = (cb = () =>{}) => {
|
|
console.log('Client is ready!');
|
|
cb()
|
|
}
|
|
|
|
const connectionLost = (cb = () =>{}) => {
|
|
console.log('** Error de autentificacion vuelve a generar el QRCODE (Borrar el archivo session.json) **');
|
|
cb()
|
|
}
|
|
|
|
|
|
module.exports = {connectionReady, connectionLost} |