diff --git a/pkg/cache/type.go b/pkg/cache/type.go index e5844c9f..e10941d7 100644 --- a/pkg/cache/type.go +++ b/pkg/cache/type.go @@ -21,4 +21,7 @@ type Message interface { SetID(string) SetStream(string) SetValue(map[string]interface{}) + GetID() string + GetStream() string + GetValue() map[string]interface{} }