mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-10 19:46:36 +03:00
0e8bd8248c
Closes #1701. It has to be imported late in the process of `import telethon` for its side-effects.
15 lines
422 B
Python
15 lines
422 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'
|
|
]
|