summaryrefslogtreecommitdiff
path: root/compression.go
diff options
context:
space:
mode:
authoranon5 <anon5clam@protonmail.com>2021-06-21 18:47:26 +0000
committeranon5 <anon5clam@protonmail.com>2021-06-21 18:47:26 +0000
commit425da65ed46061303604610bb539d6495b2b1f3f (patch)
tree10ae3e665132c369ce0207676321cef870679923 /compression.go
parent9f239d341ef46b656dda759020da87bdd0606344 (diff)
downloadmt-425da65ed46061303604610bb539d6495b2b1f3f.tar.xz
Add high-level protocol (de)serialization
Diffstat (limited to 'compression.go')
-rw-r--r--compression.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/compression.go b/compression.go
new file mode 100644
index 0000000..b7fafb9
--- /dev/null
+++ b/compression.go
@@ -0,0 +1,7 @@
+package mt
+
+type CompressionModes uint16
+
+const (
+ _ CompressionModes = 1 << iota
+)