From fdb676491fed5a09f3f86463e0207163630d991b Mon Sep 17 00:00:00 2001 From: Vincenzo Palazzo Date: Mon, 19 Jun 2023 22:32:13 +0200 Subject: [PATCH] pyln-proto: expose the tlv types Exposing the tlv types to allow public access to it. Signed-off-by: Vincenzo Palazzo --- contrib/pyln-proto/pyln/proto/message/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/contrib/pyln-proto/pyln/proto/message/__init__.py b/contrib/pyln-proto/pyln/proto/message/__init__.py index 0b4493107..40d2d6b24 100644 --- a/contrib/pyln-proto/pyln/proto/message/__init__.py +++ b/contrib/pyln-proto/pyln/proto/message/__init__.py @@ -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',