ryu-js / bot /telegrambot.js
randydev's picture
Update bot/telegrambot.js
73c3a84 verified
raw
history blame
358 Bytes
import { Bot } from 'grammy';
import { BotToken } from "../config.js";
const bot = new Bot(BotToken);
function InitBot() {
try {
bot.command("start", (ctx) => {
ctx.reply("Welcome to the bot! 🚀");
});
bot.start();
console.log("Bot is running...");
} catch (e) {
console.error("Error", e.message);
}
}
export { InitBot };