aboutsummaryrefslogtreecommitdiff
path: root/lib/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/common.py')
-rw-r--r--lib/common.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/common.py b/lib/common.py
new file mode 100644
index 0000000..ade2891
--- /dev/null
+++ b/lib/common.py
@@ -0,0 +1,16 @@
+import pyrogram
+from pyrogram.api import types as tgtypes
+
+
+class CommonContext:
+ def __init__(self, client: pyrogram.Client, channel, message: tgtypes.Message):
+ self.client = client
+ self.channel = channel
+ self.message = message
+ self.author = message.from_id
+
+ def respond(self, text):
+ self.client.send_message(self.channel, text=text)
+
+ def edit(self, text):
+ self.client.edit_message_text(chat_id=self.channel, message_id=self.message.id, text=text)