Add Close to StoreClient

This commit is contained in:
Bel LaPointe
2018-10-08 15:33:21 -06:00
parent 836d5af9e4
commit 389bda7d40
3 changed files with 6 additions and 0 deletions

View File

@@ -4,4 +4,5 @@ type Client interface {
Get(string, string) ([]byte, error)
Set(string, string, []byte) error
List(string, string) ([]string, error)
Close() error
}