add memory kv store

This commit is contained in:
Chris Lu
2021-08-21 15:00:44 -07:00
parent 5f6cc9a814
commit 849f185a20
2 changed files with 35 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
package tree_store
type TreeStore interface {
Put(k int64, v []byte) error
Get(k int64) ([]byte, error)
}