Add sorting and limit to store's List

This commit is contained in:
Bel LaPointe
2018-10-09 18:28:55 -06:00
parent 38e1fc44d3
commit d216949d91
3 changed files with 14 additions and 5 deletions

View File

@@ -3,6 +3,6 @@ package store
type Client interface {
Get(string, string) ([]byte, error)
Set(string, string, []byte) error
List(string, string) ([]string, error)
List(string, string, bool, int) ([]string, error)
Close() error
}