...

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

Documentation: edge-infra.dev/pkg/edge/edgeadmin/commands/chart

     1  package chart
     2  
     3  import (
     4  	"edge-infra.dev/pkg/edge/edgecli"
     5  	"edge-infra.dev/pkg/lib/cli/command"
     6  )
     7  
     8  func NewCmd(_ *edgecli.Config) *command.Command {
     9  	return &command.Command{
    10  		ShortUsage: "edgeadmin chart",
    11  		ShortHelp:  "Commands to publish, update, and delete NCR Helm Charts",
    12  		// Commands will be added when they are implemented
    13  		Commands: []*command.Command{},
    14  		LongHelp: longHelp,
    15  	}
    16  }
    17  

View as plain text