video-stream/main.py
2022-02-01 04:41:41 +07:00

19 lines
497 B
Python

import asyncio
from pytgcalls import idle
from driver.veez import call_py, bot, user
async def start_bot():
await bot.start()
await user.join_chat("levinachannel")
print("[INFO]: BOT & UBOT CLIENT STARTED !!")
await call_py.start()
await user.join_chat("VeezSupportGroup")
print("[INFO]: PY-TGCALLS CLIENT STARTED !!")
await idle()
print("[INFO]: STOPPING BOT & USERBOT")
await bot.stop()
loop = asyncio.get_event_loop()
loop.run_until_complete(start_bot())