Split generator/tlobject into separate files

This commit is contained in:
Lonami Exo
2018-10-15 19:29:32 +02:00
parent e3c4bd46fb
commit bb180a1db8
5 changed files with 346 additions and 336 deletions

View File

@@ -0,0 +1,11 @@
from .tlarg import TLArg
from .tlobject import TLObject
from .parser import parse_tl, find_layer
CORE_TYPES = (
0xbc799737, # boolFalse#bc799737 = Bool;
0x997275b5, # boolTrue#997275b5 = Bool;
0x3fedd339, # true#3fedd339 = True;
0x1cb5c415, # vector#1cb5c415 {t:Type} # [ t ] = Vector t;
)