Skip to content

Instantly share code, notes, and snippets.

@JonathanZWhite
Last active April 17, 2016 23:14
Show Gist options
  • Save JonathanZWhite/bbd62e543c5db3d0e4e4fd534e5f96c3 to your computer and use it in GitHub Desktop.
Save JonathanZWhite/bbd62e543c5db3d0e4e4fd534e5f96c3 to your computer and use it in GitHub Desktop.
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