mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
13 lines
262 B
Go
13 lines
262 B
Go
|
// +build !experimental
|
||
|
|
||
|
package plugin
|
||
|
|
||
|
import (
|
||
|
"github.com/docker/docker/api/client"
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
// NewPluginCommand returns a cobra command for `plugin` subcommands
|
||
|
func NewPluginCommand(cmd *cobra.Command, dockerCli *client.DockerCli) {
|
||
|
}
|