From 43e591f34e2ee664c23041c5db57b8ae95cee71c Mon Sep 17 00:00:00 2001 From: levina <82658782+levina-lab@users.noreply.github.com> Date: Mon, 11 Oct 2021 11:33:42 +0700 Subject: [PATCH] setup --- system/software.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 system/software.py diff --git a/system/software.py b/system/software.py new file mode 100644 index 0000000..1fe63b3 --- /dev/null +++ b/system/software.py @@ -0,0 +1,13 @@ +# Copyright (C) 2021 Veez Music-Project + +from config import Config +from pyrogram import Client +from pytgcalls import PyTgCalls + +VGA = Client( + Config.SESSION, + Config.API_ID, + Config.API_HASH, + plugins=dict(root="program") + ) +group_call = PyTgCalls(VGA, cache_duration=180)