removing poluting interface parameter

This commit is contained in:
Colin Henry 2020-08-22 15:33:18 -07:00
parent 15ef3556ba
commit 284c8f8359

View File

@ -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