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