mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
10 lines
236 B
Go
10 lines
236 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
|
||
|
}
|