video-stream/bot/__main__.py
2021-09-12 11:34:03 +07:00

28 lines
633 B
Python

# ===========
# running bot
# ===========
import asyncio
from pyrogram import Client, idle
# from config import Veez.API_ID, Veez.API_HASH, Veez.BOT_TOKEN
from config import Veez
from bot.videoplayer import app
from bot.videoplayer import call_py
bot = Client(
":memory:",
Veez.API_ID,
Veez.API_HASH,
bot_token=Veez.BOT_TOKEN,
plugins=dict(root="bot"),
)
bot.start()
print("[STATUS]:✅ »» BOT CLIENT STARTED ««")
app.start()
print("[STATUS]:✅ »» USERBOT CLIENT STARTED ««")
call_py.start()
print("[STATUS]:✅ »» PYTGCALLS CLIENT STARTED ««")
idle()
print("[STATUS]:❌ »» BOT STOPPED ««")