mirror of
https://github.com/elisspace/FxLifeSheet.git
synced 2026-08-29 15:44:00 +00:00
10 lines
180 B
TypeScript
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 {};
|