mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
71104bb592
Signed-off-by: Daniel Nephin <dnephin@docker.com>
30 lines
660 B
Go
30 lines
660 B
Go
package swarm
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/docker/docker/api/client"
|
|
"github.com/docker/docker/cli"
|
|
)
|
|
|
|
// NewSwarmCommand returns a cobra command for `swarm` subcommands
|
|
func NewSwarmCommand(dockerCli *client.DockerCli) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "swarm",
|
|
Short: "Manage Docker Swarm",
|
|
Args: cli.NoArgs,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
fmt.Fprintf(dockerCli.Err(), "\n"+cmd.UsageString())
|
|
},
|
|
}
|
|
cmd.AddCommand(
|
|
newInitCommand(dockerCli),
|
|
newJoinCommand(dockerCli),
|
|
newUpdateCommand(dockerCli),
|
|
newLeaveCommand(dockerCli),
|
|
newInspectCommand(dockerCli),
|
|
)
|
|
return cmd
|
|
}
|