27 lines
569 B
Python
27 lines
569 B
Python
# ===========
|
|
# running bot
|
|
# ===========
|
|
|
|
import asyncio
|
|
from pyrogram import Client, idle
|
|
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 ««")
|