mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-26 03:13:45 +03:00
f639992baa
This should take care of the extremely precarious subclassing order. It should also make IDEs go a lot less crazy. Documentation and code can be kept separated.
15 lines
423 B
Python
15 lines
423 B
Python
from ._client.telegramclient import TelegramClient
|
|
from .network import connection
|
|
from .tl import types, functions, custom
|
|
from .tl.custom import Button
|
|
from .tl import patched as _ # import for its side-effects
|
|
from . import version, events, utils, errors
|
|
|
|
__version__ = version.__version__
|
|
|
|
__all__ = [
|
|
'TelegramClient', 'Button',
|
|
'types', 'functions', 'custom', 'errors',
|
|
'events', 'utils', 'connection'
|
|
]
|