This commit is contained in:
Bottersnike 2022-02-04 17:43:32 +00:00
parent d2d8cd6b6f
commit abdc6be953
3 changed files with 9 additions and 3 deletions

View File

@ -1,4 +1,4 @@
from .const import Type
from .const import Type, ServicesMode, Compression
from .node import XMLNode
from .encoder import Encoder
from .decoder import Decoder
@ -6,7 +6,8 @@ from .wrapper import wrap, unwrap
from .misc import parse_model
__all__ = (
"Type", "XMLNode", "Encoder", "Decoder",
"Type", "ServicesMode", "Compression",
"XMLNode", "Encoder", "Decoder",
"wrap", "unwrap",
"parse_model",
)

View File

@ -156,3 +156,8 @@ class ServicesMode(enum.Enum):
Debug = "debug"
Test = "test"
Factory = "factory"
class Compression(enum.Enum):
Lz77 = "lz77"
None_ = "none"

@ -1 +1 @@
Subproject commit 9d190125536449fb01f963976ae6919c929e955d
Subproject commit 9a10c835d3e46b54af584fdd993f268614325886