Signed-off-by: allencloud <allen.sun@daocloud.io> Upstream-commit: 2736f77a94f57ddde5de1e5dc66c168290b91da2 Component: engine
8 lines
318 B
Go
8 lines
318 B
Go
package middleware
|
|
|
|
import "github.com/docker/docker/api/server/httputils"
|
|
|
|
// Middleware is an adapter to allow the use of ordinary functions as Docker API filters.
|
|
// Any function that has the appropriate signature can be registered as a middleware.
|
|
type Middleware func(handler httputils.APIFunc) httputils.APIFunc
|