package clusterconfig import ( "edge-infra.dev/pkg/edge/edgecli" "edge-infra.dev/pkg/edge/edgecli/commands/clusterconfig/listclusterconfig" "edge-infra.dev/pkg/edge/edgecli/commands/clusterconfig/modifyclusterconfig" "edge-infra.dev/pkg/lib/cli/command" ) func NewCmd(cfg *edgecli.Config) *command.Command { return &command.Command{ ShortUsage: "edge clusterconfig", ShortHelp: "Commands to create/update cluster config (pxe boot options)", Commands: []*command.Command{ listclusterconfig.NewCmd(cfg), modifyclusterconfig.NewCmd(cfg), }, } }