package update import ( "edge-infra.dev/pkg/edge/edgecli" "edge-infra.dev/pkg/lib/cli/command" ) func NewCmd(cfg *edgecli.Config) *command.Command { cmd := &command.Command{ ShortUsage: "edge update-context", ShortHelp: "Update an existing banner or cluster context in the config file", Commands: []*command.Command{ updateBanner(cfg), updateCluster(cfg), }, } return cmd }