video-stream/bot/__main__.py

24 lines
411 B
Python
Raw Normal View History

2021-09-09 01:18:24 +00:00
# ===========
# running bot
# ===========
from pyrogram import Client, idle
from config import API_ID, API_HASH, BOT_TOKEN
from bot.videoplayer import app
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")
idle()
print("[INFO]: STOPPING BOT")