Significantly clean-up imports

Sure wish I would've automated this.
This commit is contained in:
Lonami Exo
2023-09-02 23:05:28 +02:00
parent f75acee7e8
commit 4b2d252fe1
52 changed files with 447 additions and 231 deletions

View File

@@ -0,0 +1,31 @@
from .authentication import CreatedKey, Step1, Step2, Step3, create_key
from .authentication import step1 as auth_step1
from .authentication import step2 as auth_step2
from .authentication import step3 as auth_step3
from .mtp import BadMessage, Deserialization, Encrypted, MsgId, Mtp, Plain, RpcError
from .transport import Abridged, Full, Intermediate, MissingBytes, Transport
from .utils import DEFAULT_COMPRESSION_THRESHOLD
__all__ = [
"CreatedKey",
"Step1",
"Step2",
"Step3",
"create_key",
"auth_step1",
"auth_step2",
"auth_step3",
"BadMessage",
"Deserialization",
"Encrypted",
"MsgId",
"Mtp",
"Plain",
"RpcError",
"Abridged",
"Full",
"Intermediate",
"MissingBytes",
"Transport",
"DEFAULT_COMPRESSION_THRESHOLD",
]