package middleware
type MiddlewareInterface interface {
Init()
Exat(interface{}) (interface{}, error)
}