Skip to content

Commit

Permalink
feat(start-command): Updated start command.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikedegeofroy committed Nov 1, 2024
1 parent 6e9caf4 commit 0dfd789
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/commands/start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ export function setupStartCommand(bot: Telegraf<Context>) {
const username = ctx.from.username || "unknown";
await ctx.reply(
`Добро пожаловать, @${username}!\nЧтобы воспользоваться ботом, тгени его в любой беседе @${BOT_USERNAME}`,
{
reply_markup: {
inline_keyboard: [
[
{
text: "Открыть DishDash 🥪",
switch_inline_query: "",
},
],
],
},
},
);
});
}

0 comments on commit 0dfd789

Please sign in to comment.