From 284c8f83594903e79220ec995d41085b5d02c9b1 Mon Sep 17 00:00:00 2001 From: Colin Henry Date: Sat, 22 Aug 2020 15:33:18 -0700 Subject: [PATCH] removing poluting interface parameter --- rest/collection.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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