From e9212f68cc1f3c8ab6e179fff934c9b68ec1fd3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=AF=BB=E6=AC=A2?= Date: Fri, 8 Dec 2023 11:36:28 +0800 Subject: [PATCH] =?UTF-8?q?:new:=20=E6=96=B0=E5=A2=9E=E6=8F=92=E4=BB=B6?= =?UTF-8?q?=E7=B3=BB=E7=BB=9F(WIP)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugins/plugin.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 plugins/plugin.go diff --git a/plugins/plugin.go b/plugins/plugin.go new file mode 100644 index 0000000..5eb7c32 --- /dev/null +++ b/plugins/plugin.go @@ -0,0 +1,10 @@ +package plugins + +// Message +// @description: 插件消息 +type Message struct { + GroupId string // 消息来源群Id + UserId string // 消息来源用户Id + Message string // 消息内容 + IsBreak bool // 是否中断消息传递 +}