mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-25 19:03:46 +03:00
18 lines
517 B
Python
18 lines
517 B
Python
# Note: the import order matters
|
|
from ._misc import helpers # no dependencies
|
|
from . import _tl # no dependencies
|
|
from ._misc import utils # depends on helpers and _tl
|
|
from ._misc import hints # depends on types/custom
|
|
|
|
from ._client.telegramclient import TelegramClient
|
|
from ._network import connection
|
|
from . import version, events, utils, errors
|
|
|
|
__version__ = version.__version__
|
|
|
|
__all__ = [
|
|
'TelegramClient', 'Button',
|
|
'types', 'functions', 'custom', 'errors',
|
|
'events', 'utils', 'connection'
|
|
]
|