github.com/kaisenlinux/docker.io@v0.0.0-20230510090727-ea55db55fac7/swarmkit/cmd/swarmctl/cluster/cmd.go (about) 1 package cluster 2 3 import "github.com/spf13/cobra" 4 5 var ( 6 // Cmd exposes the top-level cluster command. 7 Cmd = &cobra.Command{ 8 Use: "cluster", 9 Short: "Cluster management", 10 } 11 ) 12 13 func init() { 14 Cmd.AddCommand( 15 inspectCmd, 16 listCmd, 17 updateCmd, 18 unlockKeyCmd, 19 ) 20 }