diff --git a/WebStreamer/bot/plugins/about.py b/WebStreamer/bot/plugins/about.py new file mode 100644 index 0000000..cf9b1c8 --- /dev/null +++ b/WebStreamer/bot/plugins/about.py @@ -0,0 +1,7 @@ +from pyrogram import Client, Filters + + +@Client.on_message(Filters.command(["about"])) +async def start(client, message): + helptxt = f"Created for 😘😘 you only 😍" + await message.reply_text(helptxt)