mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-25 19:03:46 +03:00
11 lines
362 B
Python
11 lines
362 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 . import version, events, utils, errors, enums
|
|
|
|
__version__ = version.__version__
|