package activationcode import ( "edge-infra.dev/pkg/edge/edgecli" "edge-infra.dev/pkg/edge/edgecli/commands/activationcode/get" "edge-infra.dev/pkg/edge/edgecli/commands/activationcode/list" "edge-infra.dev/pkg/edge/edgecli/commands/activationcode/refresh" "edge-infra.dev/pkg/lib/cli/command" ) func NewCmd(cfg *edgecli.Config) *command.Command { return &command.Command{ ShortUsage: "edge activationcode", ShortHelp: "Commands related to clusters activation codes for terminals", Commands: []*command.Command{ get.NewCmd(cfg), refresh.NewCmd(cfg), list.NewCmd(cfg), }, } }