Update bot/telegrambot.js
Browse files- bot/telegrambot.js +4 -5
bot/telegrambot.js
CHANGED
@@ -3,13 +3,12 @@ import { BotToken } from "../config.js";
|
|
3 |
|
4 |
const bot = new Bot(BotToken);
|
5 |
|
6 |
-
bot.command("start", (ctx) => {
|
7 |
-
ctx.reply("Welcome to the startup bot! 🚀 How can I help you?");
|
8 |
-
});
|
9 |
-
|
10 |
function InitBot() {
|
|
|
|
|
|
|
11 |
bot.start();
|
12 |
-
console.log("
|
13 |
}
|
14 |
|
15 |
export { InitBot };
|
|
|
3 |
|
4 |
const bot = new Bot(BotToken);
|
5 |
|
|
|
|
|
|
|
|
|
6 |
function InitBot() {
|
7 |
+
bot.command("start", (ctx) => {
|
8 |
+
ctx.reply("Welcome to the bot! 🚀");
|
9 |
+
});
|
10 |
bot.start();
|
11 |
+
console.log("Bot is running...");
|
12 |
}
|
13 |
|
14 |
export { InitBot };
|