mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-18 11:39:15 +00:00
13 lines
358 B
JavaScript
13 lines
358 B
JavaScript
const connectionReady = (cb = () =>{}) => {
|
|
console.log('Listo para escuchas mensajes')
|
|
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} |