mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-10 19:46:36 +03:00
12 lines
354 B
Python
12 lines
354 B
Python
import logging
|
|
from .client.telegramclient import TelegramClient
|
|
from .network import connection
|
|
from .tl import types, functions, custom
|
|
from . import version, events, utils
|
|
|
|
|
|
__version__ = version.__version__
|
|
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
|
|
|
__all__ = ['TelegramClient', 'types', 'functions', 'custom', 'events', 'utils']
|