Make the TelegramClient aggregate all client methods

This commit is contained in:
Lonami Exo
2018-06-10 19:05:36 +02:00
parent fb8b052754
commit 1bde72d375
2 changed files with 23 additions and 1 deletions

View File

@@ -1,2 +1,13 @@
class TelegramClient:
from . import (
UpdateMethods, AuthMethods, DownloadMethods, DialogMethods,
ChatMethods, MessageMethods, UploadMethods, MessageParseMethods,
UserMethods
)
class TelegramClient(
UpdateMethods, AuthMethods, DownloadMethods, DialogMethods,
ChatMethods, MessageMethods, UploadMethods, MessageParseMethods,
UserMethods
):
pass