mirror of
https://github.com/avipatilpro/FileStreamBot.git
synced 2026-01-15 14:22:53 -03:00
26 lines
523 B
Python
26 lines
523 B
Python
from ..config import Telegram
|
|
from pyrogram import Client
|
|
|
|
if Telegram.SECONDARY:
|
|
plugins=None
|
|
no_updates=True
|
|
else:
|
|
plugins={"root": "FileStream/bot/plugins"}
|
|
no_updates=None
|
|
|
|
FileStream = Client(
|
|
name="FileStream",
|
|
api_id=Telegram.API_ID,
|
|
api_hash=Telegram.API_HASH,
|
|
workdir="FileStream",
|
|
plugins=plugins,
|
|
bot_token=Telegram.BOT_TOKEN,
|
|
sleep_threshold=Telegram.SLEEP_THRESHOLD,
|
|
workers=Telegram.WORKERS,
|
|
no_updates=no_updates
|
|
)
|
|
|
|
multi_clients = {}
|
|
work_loads = {}
|
|
|