forked from p93542168/wheat-cache
feat(middleware): add middleware interface
This commit is contained in:
parent
0458ed3d21
commit
ea9a660740
|
@ -0,0 +1,6 @@
|
||||||
|
package middleware
|
||||||
|
|
||||||
|
type MiddlewareInterface interface {
|
||||||
|
Init()
|
||||||
|
Exet(interface{}) (interface{}, error)
|
||||||
|
}
|
Loading…
Reference in New Issue