ryu-js / bot /telegrambot.js
randydev's picture
Update bot/telegrambot.js
30cef19 verified
raw
history blame
299 Bytes
import { Bot } from 'grammy';
import { BotToken } from "../config.js";
const bot = new Bot(BotToken);
bot.command("start", (ctx) => {
ctx.reply("Welcome to the startup bot! 🚀 How can I help you?");
});
function InitBot() {
bot.start();
console.log("Starting Bot");
}
export { InitBot };