...

Source file src/edge-infra.dev/pkg/edge/edgeadmin/commands/operatorintervention/view/view.go

Documentation: edge-infra.dev/pkg/edge/edgeadmin/commands/operatorintervention/view

     1  package view
     2  
     3  import (
     4  	"edge-infra.dev/pkg/edge/edgecli"
     5  	"edge-infra.dev/pkg/lib/cli/command"
     6  )
     7  
     8  func NewCmd(cfg *edgecli.Config) *command.Command {
     9  	return &command.Command{
    10  		ShortUsage: "edgeadmin operatorintervention view",
    11  		ShortHelp:  "commands to view operator intervention configurations",
    12  
    13  		Commands: []*command.Command{
    14  			NewSummary(cfg),
    15  		},
    16  	}
    17  }
    18  

View as plain text