mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-26 03:13:45 +03:00
14 lines
347 B
Python
14 lines
347 B
Python
from ._client.telegramclient import TelegramClient
|
|
from .network import connection
|
|
from ._tl import custom
|
|
from ._tl.custom import Button
|
|
from . import version, events, utils, errors
|
|
|
|
__version__ = version.__version__
|
|
|
|
__all__ = [
|
|
'TelegramClient', 'Button',
|
|
'types', 'functions', 'custom', 'errors',
|
|
'events', 'utils', 'connection'
|
|
]
|