1
0
mirror of https://github.com/elisspace/FxLifeSheet.git synced 2026-08-29 15:44:00 +00:00
Files
FxLifeSheet/classes/telegram.ts
2021-11-04 15:14:15 +01:00

10 lines
180 B
TypeScript

declare var require: any;
// Telegram setup
const Telegraf = require("telegraf");
const bot = new Telegraf(process.env.TELEGRAM_BOT_TOKEN);
module.exports.bot = bot;
export {};