video-stream/main.py
2021-11-12 07:09:09 +07:00

16 lines
391 B
Python

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