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 // 是否中断消息传递 +}