aboutsummaryrefslogtreecommitdiff
path: root/tnode.go
diff options
context:
space:
mode:
Diffstat (limited to 'tnode.go')
-rw-r--r--tnode.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/tnode.go b/tnode.go
new file mode 100644
index 0000000..fcb4782
--- /dev/null
+++ b/tnode.go
@@ -0,0 +1,8 @@
+package bolt
+
+type tnodes []tnode
+
+type tnode struct {
+ key []byte
+ value []byte
+}