This commit is contained in:
Tofik Denianto 2021-10-30 02:19:55 +07:00 committed by GitHub
parent ca7d728f2f
commit e1a02c3a0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,9 +5,9 @@ from pytgcalls import idle as engine
from driver.veez import bot, call_py from driver.veez import bot, call_py
from program import __version__ from program import __version__
await bot.start() bot.start()
print(f"program v{__version__} started !") print(f"program v{__version__} started !")
await call_py.start() call_py.start()
print("program client started !") print("program client started !")
await engine() engine()
await idle() idle()