pyln-proto: expose the tlv types

Exposing the tlv types to allow public access to it.

Signed-off-by: Vincenzo Palazzo <vincenzopalazzodev@gmail.com>
This commit is contained in:
Vincenzo Palazzo 2023-06-19 22:32:13 +02:00 committed by Rusty Russell
parent 8991f27497
commit fdb676491f
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,5 @@
from .array_types import SizedArrayType, DynamicArrayType, EllipsisArrayType
from .message import MessageNamespace, MessageType, Message, SubtypeType
from .message import MessageNamespace, MessageType, Message, SubtypeType, TlvStreamType, TlvMessageType
from .fundamental_types import split_field, FieldType
__all__ = [
@ -14,6 +14,8 @@ __all__ = [
"SizedArrayType",
"DynamicArrayType",
"EllipsisArrayType",
"TlvStreamType",
"TlvMessageType",
# fundamental_types
'byte',