11 lines
183 B
Go
11 lines
183 B
Go
package definition
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
)
|
|
|
|
type MiddlewareProvider interface {
|
|
New(ctx context.Context, cfg map[string]string) (func(http.Handler) http.Handler, error)
|
|
}
|