ryu-js / bot /telegrambot.js
randydev's picture
Create bot/telegrambot.js
430796e verified
raw
history blame
198 Bytes
const { Bot } = from "grammy";
const bot = new Bot("");
bot.on("/start", (ctx) => ctx.reply("Hi there!"));
function InitBot() {
bot.start();
console.log("Starting Bot")
}
export { InitBot };