Skip to content

Instantly share code, notes, and snippets.

View miki-tebe's full-sized avatar

Mikiyas Tibebu miki-tebe

View GitHub Profile
@miki-tebe
miki-tebe / index.js
Last active March 27, 2021 17:16
Telegram bot
const Telegraf = require('telegraf');
const BOT_TOKEN = process.env.BOT_TOKEN || "";
const PORT = process.env.PORT || 3000;
const URL = process.env.URL || "";
const bot = new Telegraf(BOT_TOKEN);
bot.start(ctx=>{
ctx.reply('Welcome');
});