mirror of
https://github.com/outbackdingo/matchbox.git
synced 2026-01-27 10:19:35 +00:00
17 lines
266 B
Go
17 lines
266 B
Go
package cli
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// groupCmd represents the group command
|
|
var groupCmd = &cobra.Command{
|
|
Use: "group",
|
|
Short: "Manage machine groups",
|
|
Long: `List and describe machine groups`,
|
|
}
|
|
|
|
func init() {
|
|
RootCmd.AddCommand(groupCmd)
|
|
}
|