video-stream/program/__main__.py

14 lines
304 B
Python
Raw Normal View History

2021-10-25 08:02:20 +00:00
import os
2021-10-11 03:16:54 +00:00
from pyrogram import Client, idle
2021-10-25 08:02:20 +00:00
from pytgcalls import PyTgCalls
from pytgcalls import idle as engine
2021-10-25 08:24:50 +00:00
from driver.veez import bot, call_py
2021-10-25 08:02:20 +00:00
from program import __version__
bot.start()
print(f"program v{__version__} started !")
call_py.start()
print("program client started !")
engine()
idle()