This repository has been archived on 2024-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
line-bot-js/JoinClass.js
2023-01-10 12:01:05 +08:00

27 lines
454 B
JavaScript

/** Join */
class JoinClass {
constructor(bot, LineNotify) {
this.bot = bot;
this.LineNotify = LineNotify;
}
Join(event) {
// switch (event.message.type) {
// case 'text': {
// this.Text(event);
// break;
// }
// case 'sticker': {
// this.Sticker(event);
// break;
// }
// default:
// break;
// }
console.log(`[Join] ${JSON.stringify(event)}`);
}
}
module.exports = JoinClass