aboutsummaryrefslogtreecommitdiffstats
path: root/client/go/internal/slime/type.go
diff options
context:
space:
mode:
Diffstat (limited to 'client/go/internal/slime/type.go')
-rw-r--r--client/go/internal/slime/type.go17
1 files changed, 17 insertions, 0 deletions
diff --git a/client/go/internal/slime/type.go b/client/go/internal/slime/type.go
new file mode 100644
index 00000000000..4b11744fe48
--- /dev/null
+++ b/client/go/internal/slime/type.go
@@ -0,0 +1,17 @@
+// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Author: arnej
+
+package slime
+
+type Type byte
+
+const (
+ NIX Type = iota
+ BOOL
+ LONG
+ DOUBLE
+ STRING
+ DATA
+ ARRAY
+ OBJECT
+)