This commit is contained in:
Wrench
2021-04-16 19:37:44 +05:30
parent bf196f6476
commit b5fdac83fe
12 changed files with 468 additions and 661 deletions

View File

@@ -0,0 +1,14 @@
# 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
)