From d51c7a21fe3038045327d4f866dd522fe4e86f56 Mon Sep 17 00:00:00 2001 From: Avi Patil <67785446+avipatilpro@users.noreply.github.com> Date: Mon, 26 Apr 2021 03:57:05 +0530 Subject: [PATCH] Initial Commit --- WebStreamer/bot/plugins/about.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 WebStreamer/bot/plugins/about.py 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)