randydev commited on
Commit
7811b06
·
verified ·
1 Parent(s): 6b55fd1

Update bot/telegrambot.js

Browse files
Files changed (1) hide show
  1. bot/telegrambot.js +3 -2
bot/telegrambot.js CHANGED
@@ -1,6 +1,7 @@
1
- const { Bot } = from "grammy";
 
2
 
3
- const bot = new Bot("");
4
 
5
  bot.on("/start", (ctx) => ctx.reply("Hi there!"));
6
 
 
1
+ import { Bot } = from "grammy";
2
+ import { BotToken } from "../config.js";
3
 
4
+ const bot = new Bot(BotToken);
5
 
6
  bot.on("/start", (ctx) => ctx.reply("Hi there!"));
7