wheat-cache/plugins/define.go

9 lines
293 B
Go
Raw Normal View History

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