package terminalinterface import ( "edge-infra.dev/pkg/edge/edgecli" "edge-infra.dev/pkg/edge/edgecli/commands/terminal/terminalinterface/modify" "edge-infra.dev/pkg/lib/cli/command" ) func NewCmd(cfg *edgecli.Config) *command.Command { return &command.Command{ ShortUsage: "edge terminal interface", ShortHelp: "Commands related to a terminal interface", Commands: []*command.Command{ modify.NewCmd(cfg), }, } }