Update bot/telegrambot.js
Browse files- bot/telegrambot.js +3 -2
bot/telegrambot.js
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
-
|
|
|
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 |
|