mirror of
https://github.com/docker/docs.git
synced 2026-03-29 23:38:56 +07:00
Removing direct dependencies from the server configuration. Signed-off-by: David Calavera <david.calavera@gmail.com>
8 lines
316 B
Go
8 lines
316 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 register as a middleware.
|
|
type Middleware func(handler httputils.APIFunc) httputils.APIFunc
|