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