From d2639ccf229b0375428e36fcf3239e2a569e02ed Mon Sep 17 00:00:00 2001 From: linwenxiang <991154416@qq.com> Date: Thu, 6 Aug 2020 00:20:04 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=96=B9=E6=B3=95=E5=90=8D?= =?UTF-8?q?=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg/cache/type.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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{} }