Duplicated from dev-mode-explorers/dev-mode-javascript
430796e
1
2
3
4
5
6
7
8
9
10
11
12
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 };