Files
FileStreamBot/WebStreamer/bot/__init__.py
Avishkar Patil 10cc46de90 Initial Commit
2.0
2022-01-02 19:22:16 +05:30

13 lines
252 B
Python

from pyrogram import Client
from ..vars import Var
StreamBot = Client(
session_name='Web Streamer',
api_id=Var.API_ID,
api_hash=Var.API_HASH,
bot_token=Var.BOT_TOKEN,
sleep_threshold=Var.SLEEP_THRESHOLD,
workers=Var.WORKERS
)