package view import ( "edge-infra.dev/pkg/edge/edgecli" "edge-infra.dev/pkg/lib/cli/command" ) func NewCmd(cfg *edgecli.Config) *command.Command { return &command.Command{ ShortUsage: "edgeadmin operatorintervention view", ShortHelp: "commands to view operator intervention configurations", Commands: []*command.Command{ NewSummary(cfg), }, } }