Example Fix Here's an example of valid bot commands:
const { Telegraf } = require('telegraf');
const bot = new Telegraf('YOUR_BOT_TOKEN');
bot.command('start', (ctx) => {
ctx.reply('Welcome to the bot!');
});
bot.command('help', (ctx) => {
ctx.reply('How can I assist you?');
});
bot.launch();