2021-10-04 20:54:08 +08:00
|
|
|
package plugins
|
2021-09-26 22:13:17 +08:00
|
|
|
|
2021-10-19 15:33:03 +08:00
|
|
|
type PluginInterface interface {
|
2021-10-04 21:10:42 +08:00
|
|
|
Init() // 初始化
|
|
|
|
Exec(interface{}) (interface{}, error) // 处理用户发送事件
|
|
|
|
Name() string // 获取中间件名称
|
2021-10-09 21:54:26 +08:00
|
|
|
Describe() string // 描述
|
2021-09-26 22:13:17 +08:00
|
|
|
}
|