ryu-js / bot /telegrambot.js
randydev's picture
Update bot/telegrambot.js
3cb3d27 verified
raw
history blame
266 Bytes
import { Bot } from 'grammy';
import { BotToken } from "../config.js";
const bot = new Bot(BotToken);
bot.on("start", (ctx) => ctx.reply("Hi there from grammy javascript"));
function InitBot() {
bot.start();
console.log("Starting Bot");
}
export { InitBot };