ryu-js / bot /telegrambot.js
randydev's picture
Update bot/telegrambot.js
0dd7c34 verified
raw
history blame
281 Bytes
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 };