forked from p93542168/wheat-cache
feat(plugins): updata plugins
This commit is contained in:
parent
99c3c56a5b
commit
b182d7602d
|
@ -1,8 +1,6 @@
|
||||||
package log_middle
|
package log_middle
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
|
||||||
|
|
||||||
"gitee.com/timedb/wheatCache/plugins"
|
"gitee.com/timedb/wheatCache/plugins"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -13,14 +11,17 @@ func (i *logMiddle) Init() {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (i *logMiddle) Exec(interface{}) (interface{}, error) {
|
func (i *logMiddle) Exec(interface{}) (interface{}, error) {
|
||||||
fmt.Println(1)
|
|
||||||
return nil, nil
|
return "", nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (i *logMiddle) Name() string {
|
func (i *logMiddle) Name() string {
|
||||||
return "logMiddle"
|
return "logMiddle"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (i *logMiddle) Describe() string {
|
||||||
|
return ""
|
||||||
|
}
|
||||||
func NewMiddleware() plugins.MiddleToolsInterface {
|
func NewMiddleware() plugins.MiddleToolsInterface {
|
||||||
return &logMiddle{}
|
return &logMiddle{}
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,13 +12,17 @@ func (i *mapKey) Init() {
|
||||||
|
|
||||||
func (i *mapKey) Exec(interface{}) (interface{}, error) {
|
func (i *mapKey) Exec(interface{}) (interface{}, error) {
|
||||||
|
|
||||||
return nil, nil
|
return "", nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (i *mapKey) Name() string {
|
func (i *mapKey) Name() string {
|
||||||
return "mapKey"
|
return "mapKey"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (i *mapKey) Describe() string {
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
func NewMiddleware() plugins.MiddleToolsInterface {
|
func NewMiddleware() plugins.MiddleToolsInterface {
|
||||||
return &mapKey{}
|
return &mapKey{}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue