Store package for boltdb get/set/list
This commit is contained in:
7
store/store.go
Normal file
7
store/store.go
Normal 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)
|
||||
}
|
||||
Reference in New Issue
Block a user