diff --git a/pkg/cache/type.go b/pkg/cache/type.go index e10941d7..bfe671da 100644 --- a/pkg/cache/type.go +++ b/pkg/cache/type.go @@ -20,8 +20,8 @@ type Adapter interface { type Message interface { SetID(string) SetStream(string) - SetValue(map[string]interface{}) + SetValues(map[string]interface{}) GetID() string GetStream() string - GetValue() map[string]interface{} + GetValues() map[string]interface{} }