import { Bot } from 'grammy'; | |
import { BotToken } from "../config.js"; | |
const bot = new Bot(BotToken); | |
function InitBot() { | |
bot.command("start", (ctx) => { | |
ctx.reply("Welcome to the bot! 🚀"); | |
}); | |
bot.start(); | |
console.log("Bot is running..."); | |
} | |
export { InitBot }; |