mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-15 14:06:41 +03:00
12 lines
289 B
Python
12 lines
289 B
Python
"""
|
|
The main package for the Telethon library.
|
|
"""
|
|
|
|
from ._impl import tl as _tl
|
|
from ._impl.client import Client
|
|
from ._impl.client.errors import errors
|
|
from ._impl.mtproto import RpcError
|
|
from .version import __version__
|
|
|
|
__all__ = ["_tl", "Client", "errors", "RpcError", "__version__"]
|