video-stream/program/__main__.py

14 lines
299 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
from driver import bot, call_py
from program import __version__
bot.start()
print(f"program v{__version__} started !")
call_py.start()
print("program client started !")
engine()
idle()