randydev commited on
Commit
0dd7c34
·
verified ·
1 Parent(s): 30cef19

Update bot/telegrambot.js

Browse files
Files changed (1) hide show
  1. 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("Starting Bot");
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 };