blob: 4a3ed64df207901a29b3bb87e9e27467a8235882 [file] [log] [blame]
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
}