Skip to content

Instantly share code, notes, and snippets.

View juanpablofernandez's full-sized avatar
💭
I may be slow to respond.

Juan Pablo juanpablofernandez

💭
I may be slow to respond.
View GitHub Profile
@juanpablofernandez
juanpablofernandez / index.js
Last active October 10, 2019 15:45
Test Bot Index.js
const Telegraf = require('telegraf')
const bot = new Telegraf(process.env.BOT_TOKEN)
bot.webhookReply = true
bot.start((ctx) => ctx.reply('Welcome!'))
bot.help((ctx) => ctx.reply('Send me a sticker'))
bot.on('sticker', (ctx) => ctx.reply('👍'))
bot.hears('Hi', (ctx) => ctx.reply('Hey there'))