aboutsummaryrefslogtreecommitdiff
path: root/tnode.go
diff options
context:
space:
mode:
authorBen Johnson <benbjohnson@yahoo.com>2014-01-28 15:16:22 -0500
committerBen Johnson <benbjohnson@yahoo.com>2014-01-28 15:16:22 -0500
commita942c1d1686f2af42a8a2f3d59d7e1b5afd0922a (patch)
treedeb42e921e50c12ec9811ce6578ec2bfea7de729 /tnode.go
parentClean up test suite. (diff)
downloaddedo-a942c1d1686f2af42a8a2f3d59d7e1b5afd0922a.tar.gz
dedo-a942c1d1686f2af42a8a2f3d59d7e1b5afd0922a.tar.xz
Add tpage.put() test.
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
+}