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)