2018-06-10 20:05:36 +03:00
|
|
|
from . import (
|
2019-01-05 19:18:40 +03:00
|
|
|
AccountMethods, AuthMethods, DownloadMethods, DialogMethods, ChatMethods,
|
|
|
|
BotMethods, MessageMethods, UploadMethods, ButtonMethods, UpdateMethods,
|
2019-06-24 18:48:46 +03:00
|
|
|
MessageParseMethods, UserMethods, TelegramBaseClient
|
2018-06-10 20:05:36 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class TelegramClient(
|
2019-01-05 19:18:40 +03:00
|
|
|
AccountMethods, AuthMethods, DownloadMethods, DialogMethods, ChatMethods,
|
|
|
|
BotMethods, MessageMethods, UploadMethods, ButtonMethods, UpdateMethods,
|
2019-06-24 18:48:46 +03:00
|
|
|
MessageParseMethods, UserMethods, TelegramBaseClient
|
2018-06-10 20:05:36 +03:00
|
|
|
):
|
2018-06-10 14:58:21 +03:00
|
|
|
pass
|