mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
0016b331da
Signed-off-by: Victor Vieux <vieux@docker.com>
21 lines
613 B
Go
21 lines
613 B
Go
// +build experimental
|
|
|
|
package plugin
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
enginetypes "github.com/docker/engine-api/types"
|
|
)
|
|
|
|
// Backend for Plugin
|
|
type Backend interface {
|
|
Disable(name string) error
|
|
Enable(name string) error
|
|
List() ([]enginetypes.Plugin, error)
|
|
Inspect(name string) (enginetypes.Plugin, error)
|
|
Remove(name string, config *enginetypes.PluginRmConfig) error
|
|
Set(name string, args []string) error
|
|
Pull(name string, metaHeaders http.Header, authConfig *enginetypes.AuthConfig) (enginetypes.PluginPrivileges, error)
|
|
Push(name string, metaHeaders http.Header, authConfig *enginetypes.AuthConfig) error
|
|
}
|