Store package for boltdb get/set/list

This commit is contained in:
Bel LaPointe
2018-10-07 23:05:50 -06:00
parent f7ffe6c829
commit 9f057891bc
3 changed files with 137 additions and 0 deletions

7
store/store.go Normal file
View File

@@ -0,0 +1,7 @@
package store
type Client interface {
Get(string, string) ([]byte, error)
Set(string, string, []byte) error
List(string, string) ([]string, error)
}