Files
matchbox/bootcfg/cli/group.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)
}