1
0
forked from lxh/go-wxhelper

🆕 新增插件系统(WIP)

This commit is contained in:
李寻欢 2023-12-08 11:36:28 +08:00
parent 64e6de06c1
commit e9212f68cc

10
plugins/plugin.go Normal file
View File

@ -0,0 +1,10 @@
package plugins
// Message
// @description: 插件消息
type Message struct {
GroupId string // 消息来源群Id
UserId string // 消息来源用户Id
Message string // 消息内容
IsBreak bool // 是否中断消息传递
}