video-stream/bot/__main__.py
2021-09-09 12:02:51 +07:00

27 lines
521 B
Python

# ===========
# running bot
# ===========
import asyncio
from pyrogram import Client, idle
from config import API_ID, API_HASH, BOT_TOKEN
from bot.videoplayer import app
from bot.videoplayer import call_py
bot = Client(
":memory:",
API_ID,
API_HASH,
bot_token=BOT_TOKEN,
plugins=dict(root="bot"),
)
bot.start()
print("[INFO]: STARTING BOT CLIENT")
app.start()
print("[INFO]: STARTING USERBOT CLIENT")
call_py.start()
print("[INFO]: STARTING PY-TGCALLS CLIENT")
idle()
print("[INFO]: STOPPING BOT")