diff --git a/rest/collection.go b/rest/collection.go index 94426bb..32d9819 100755 --- a/rest/collection.go +++ b/rest/collection.go @@ -10,7 +10,7 @@ import ( ) type CollectionStore interface { - All(params url.Values) (interface{}, error) + All(params map[string][]string) (interface{}, error) Get(id string) (interface{}, error) Delete(id string) error Update(e interface{}) error