forked from p93542168/wheat-cache
23 lines
521 B
Go
23 lines
521 B
Go
// Code generated by gen-middleware. DO NOT EDIT.
|
|
// make gen-middleware generated
|
|
|
|
package config
|
|
|
|
import (
|
|
"gitee.com/timedb/wheatCache/plugins"
|
|
|
|
logMiddle "gitee.com/timedb/wheatCache/plugins/log-middle"
|
|
mapKey "gitee.com/timedb/wheatCache/plugins/map-key"
|
|
)
|
|
|
|
func GetMiddlewareMap() map[string]plugins.MiddleToolsInterface {
|
|
|
|
logMiddle := logMiddle.NewMiddleware()
|
|
mapKey := mapKey.NewMiddleware()
|
|
return map[string]plugins.MiddleToolsInterface{
|
|
|
|
logMiddle.Name(): logMiddle,
|
|
mapKey.Name(): mapKey,
|
|
}
|
|
}
|