diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2014-01-28 15:16:22 -0500 |
---|---|---|
committer | Ben Johnson <benbjohnson@yahoo.com> | 2014-01-28 15:16:22 -0500 |
commit | a942c1d1686f2af42a8a2f3d59d7e1b5afd0922a (patch) | |
tree | deb42e921e50c12ec9811ce6578ec2bfea7de729 /tnode.go | |
parent | Clean up test suite. (diff) | |
download | dedo-a942c1d1686f2af42a8a2f3d59d7e1b5afd0922a.tar.gz dedo-a942c1d1686f2af42a8a2f3d59d7e1b5afd0922a.tar.xz |
Add tpage.put() test.
Diffstat (limited to 'tnode.go')
-rw-r--r-- | tnode.go | 8 |
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 +} |