Telethon/client/src/telethon/__init__.py
2023-10-12 18:17:41 +02:00

10 lines
240 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
__all__ = ["_tl", "Client", "errors", "RpcError"]