diff --git a/driver/veez.py b/driver/veez.py new file mode 100644 index 0000000..c2a7485 --- /dev/null +++ b/driver/veez.py @@ -0,0 +1,16 @@ +from pytgcalls import PyTgCalls +from pyrogram import Client, filters +from config import SESSION_NAME, API_ID, API_HASH + +contact_filter = filters.create( + lambda _, __, message: + (message.from_user and message.from_user.is_contact) or message.outgoing +) + +bot = Client( + SESSION_NAME, + API_ID, + API_HASH, + plugins=dict(root="program") +) +call_py = PyTgCalls(bot)