From b57af6c5423af1cda0f9daf8dcb28c033bf0142d Mon Sep 17 00:00:00 2001 From: linwenxiang <991154416@qq.com> Date: Wed, 5 Aug 2020 23:31:01 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=9A=E4=B9=89=E7=BC=93=E5=AD=98=E5=92=8C?= =?UTF-8?q?=E9=98=9F=E5=88=97=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg/cache/type.go | 3 +++ 1 file changed, 3 insertions(+) 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{} }