randydev's picture
fix try
1594ae8
raw
history blame
435 Bytes
from pyrogram import *
from pyrogram.types import *
from akn.AllDownloaderBot.helpers.funcs_mics import arzpaginate_modules, help_texts
@Client.on_message(filters.command("help"))
async def azrhelp_menu(_, message):
page = 0
buttons = arzpaginate_modules(page, list(help_texts.keys()), "help")
await message.reply_text(
"**Choose a module to view help:**",
reply_markup=InlineKeyboardMarkup(buttons)
)