diff --git a/bot/helpCommand.ts b/bot/helpCommand.ts new file mode 100644 index 0000000..3d759c5 --- /dev/null +++ b/bot/helpCommand.ts @@ -0,0 +1,15 @@ +import { ErisContext } from "./mod.ts"; +import { omitUndef } from "../utils/omitUndef.ts"; +import { botDescription } from "./mod.ts"; // Import the description + +export async function helpCommand(ctx: ErisContext) { + await ctx.reply( + botDescription, // Send the stored description + omitUndef({ + reply_to_message_id: ctx.message?.message_id, + allow_sending_without_reply: true, + disable_web_page_preview: true, // Disable link previews + parse_mode: "Markdown" + }), + ); +} \ No newline at end of file