Files
FileStreamBot/WebStreamer/bot/__init__.py
Wrench b5fdac83fe push
2021-04-16 19:37:44 +05:30

14 lines
340 B
Python

# This file is a part of TG-FileStreamBot
# Coding : Jyothis Jayanth [@EverythingSuckz]
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
)