pyln.proto.message: export more.

FieldType lets you make new field types, and split_field helps with
parsing.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell 2020-06-04 13:43:35 +09:30 committed by Christian Decker
parent b33dc9847c
commit ee6c58cbd5

View File

@ -1,4 +1,5 @@
from .message import MessageNamespace, MessageType, Message, SubtypeType
from .fundamental_types import split_field, FieldType
__version__ = '0.0.1'
@ -7,6 +8,8 @@ __all__ = [
"MessageType",
"Message",
"SubtypeType",
"FieldType",
"split_field",
# fundamental_types
'byte',