Delete __init__.py

This commit is contained in:
PyMaster 2020-09-06 21:11:21 +03:00 committed by GitHub
parent bfe51f1c27
commit 3dfdce5046
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 20 deletions

View File

@ -1,20 +0,0 @@
from .config import (SESSION_NAME, API_ID, API_HASH,
BOT_TOKEN, APP_PLUGINS)
from pyrogram import Client
class App(Client):
def __init__(self):
super().__init__(
session_name=SESSION_NAME,
api_id=API_ID,
api_hash=API_HASH,
bot_token=BOT_TOKEN,
plugins=dict(root=APP_PLUGINS)
)
def start(self, *args):
super().start()
def stop(self, *args):
super().stop()