From 60f705b26eb6e14799ea69bcb1b6532a730bd1a4 Mon Sep 17 00:00:00 2001 From: levina <82658782+levina-lab@users.noreply.github.com> Date: Mon, 7 Feb 2022 22:55:09 +0700 Subject: [PATCH] rename --- driver/{veez.py => core.py} | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) rename driver/{veez.py => core.py} (85%) diff --git a/driver/veez.py b/driver/core.py similarity index 85% rename from driver/veez.py rename to driver/core.py index e0d09ff..00940f8 100644 --- a/driver/veez.py +++ b/driver/core.py @@ -2,6 +2,7 @@ from config import API_HASH, API_ID, BOT_TOKEN, SESSION_NAME from pyrogram import Client from pytgcalls import PyTgCalls + bot = Client( ":veez:", API_ID, @@ -16,4 +17,4 @@ user = Client( api_hash=API_HASH, ) -call_py = PyTgCalls(user, overload_quiet_mode=True) +calls = PyTgCalls(user, overload_quiet_mode=True)