File size: 266 Bytes
9926b6a
7811b06
430796e
7811b06
430796e
3cb3d27
430796e
 
 
84401ff
430796e
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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 };