mirror of https://github.com/docker/cli.git
13 lines
264 B
Go
13 lines
264 B
Go
|
// +build !experimental
|
||
|
|
||
|
package plugin
|
||
|
|
||
|
import (
|
||
|
"github.com/docker/docker/cli/command"
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
// NewPluginCommand returns a cobra command for `plugin` subcommands
|
||
|
func NewPluginCommand(cmd *cobra.Command, dockerCli *command.DockerCli) {
|
||
|
}
|