Command Handler
Advanced Functionality for Bot Commands
from pyrogram import Client
from pyropatch import command_handler
app = Client(...)Features
from pyrogram import Client
from pyropatch import command_handler #apply command handler
app = Client(...)
#pass info along with commands in command filter
@app.on_message(filters.command(commands='start',info='Check Bot is Alive'))from pyrogram import Client
from pyropatch import command_handler #apply command handler
app = Client(...)
# to get all the commands available in bot
commands = app.commandsLast updated