bot.start(async (ctx) => {
try {
await ctx.reply(`Привет ${ctx.message.from.first_name}!`, Markup.inlineKeyboard(
[
[Markup.button.callback('Играть в игру', 'btn_game')],
[Markup.button.callback('О боте', 'btn_about')],
]
))
} catch (e) {
console.error(e);
}
})
bot.command('btn', (ctx) => {
ctx.reply(`Привет ${ctx.message.from.first_name}!`, {
reply_markup: Markup.keyboard([['О боте', 'Играть в игру']])
})
});