mirror of
https://github.com/docker/cli.git
synced 2026-01-13 18:22:35 +03:00
14 lines
284 B
Go
14 lines
284 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(dockerCli *command.DockerCli) *cobra.Command {
|
|
return &cobra.Command{}
|
|
}
|