This commit is contained in:
levina 2021-11-12 07:09:09 +07:00 committed by GitHub
parent d0ce0baa57
commit 4e612c1903
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,12 +3,12 @@ from pytgcalls import idle
from driver.veez import call_py, bot from driver.veez import call_py, bot
async def mulai_bot(): async def mulai_bot():
print("[INFO]: STARTING BOT CLIENT") print("[VEEZ]: STARTING BOT CLIENT")
await bot.start() await bot.start()
print("[INFO]: STARTING PYTGCALLS CLIENT") print("[VEEZ]: STARTING PYTGCALLS CLIENT")
await call_py.start() await call_py.start()
await idle() await idle()
print("[INFO]: STOPPING BOT") print("[VEEZ]: STOPPING BOT & USERBOT")
await bot.stop() await bot.stop()
loop = asyncio.get_event_loop() loop = asyncio.get_event_loop()