1 package terminalinterface 2 3 import ( 4 "edge-infra.dev/pkg/edge/edgecli" 5 "edge-infra.dev/pkg/edge/edgecli/commands/terminal/terminalinterface/modify" 6 "edge-infra.dev/pkg/lib/cli/command" 7 ) 8 9 func NewCmd(cfg *edgecli.Config) *command.Command { 10 return &command.Command{ 11 ShortUsage: "edge terminal interface", 12 ShortHelp: "Commands related to a terminal interface", 13 14 Commands: []*command.Command{ 15 modify.NewCmd(cfg), 16 }, 17 } 18 } 19