chat-bot/bot/commands/botCommands.ts

6 lines
207 B
TypeScript

import { Context, Telegraf } from 'telegraf';
import { Update } from 'typegram';
export const setBotCommands = (bot: Telegraf<Context<Update>>) => {
bot.command('hello', (ctx) => ctx.reply('world'));
};