Last active
April 17, 2016 23:14
-
-
Save JonathanZWhite/bbd62e543c5db3d0e4e4fd534e5f96c3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Messenger { | |
constructor() { | |
this.bot = new TelegramBot('Your token here', { polling: true }); | |
} | |
listen() { | |
this.bot.on('text', this.handleText.bind(this)) | |
} | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment