mirror of
https://github.com/moby/moby.git
synced 2026-07-03 13:18:32 +00:00
Legacy plugin model maintained a map of plugins. This is not used by the new model. Using this map in the new model causes incorrect lookup of plugins. This change uses adds a plugin to the map only if its legacy. Signed-off-by: Anusha Ragunathan <anusha@docker.com>
11 lines
253 B
Go
11 lines
253 B
Go
package plugin
|
|
|
|
import "github.com/docker/docker/pkg/plugins"
|
|
|
|
// Plugin represents a plugin. It is used to abstract from an older plugin architecture (in pkg/plugins).
|
|
type Plugin interface {
|
|
Client() *plugins.Client
|
|
Name() string
|
|
IsLegacy() bool
|
|
}
|