import disconnect.js and reconnecting.js

This commit is contained in:
Carol Knieriem 2020-02-04 09:30:26 -05:00
parent 290a8b2cd9
commit a7b3db89e6
No known key found for this signature in database
GPG Key ID: 932EC6A6BAEE122B
2 changed files with 6 additions and 0 deletions

3
events/disconnect.js Normal file
View File

@ -0,0 +1,3 @@
module.exports = client => { // eslint-disable-line no-unused-vars
console.log(`You have been disconnected at ${new Date()}`);
};

3
events/reconnecting.js Normal file
View File

@ -0,0 +1,3 @@
module.exports = client => { // eslint-disable-line no-unused-vars
console.log(`Reconnecting at ${new Date()}`);
};