This repository has been archived on 2024-10-15. You can view files and clone it, but cannot push or open issues or pull requests.
PyrogramBotBase/plugins/remove_commands.py

14 lines
456 B
Python
Raw Normal View History

2023-05-26 17:33:07 +03:00
from pyrogram import filters
from pyrogram.client import Client
from pyrogram.types import Message
from libbot.pyrogram.classes import PyroClient
2023-05-26 17:33:07 +03:00
@Client.on_message(
~filters.scheduled & filters.private & filters.command(["remove_commands"], prefixes=["/"]) # type: ignore
)
async def command_remove_commands(app: PyroClient, msg: Message):
await msg.reply_text("Okay.")
await app.remove_commands(command_sets=await app.collect_commands())