Skip to content

Commit

Permalink
remove connections as alias (#7531)
Browse files Browse the repository at this point in the history
  • Loading branch information
nithyatsu authored Apr 26, 2024
1 parent a6aa42e commit e59b3ac
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions pkg/cli/cmd/app/graph/graph.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,10 @@ import (
func NewCommand(factory framework.Factory) (*cobra.Command, framework.Runner) {
runner := NewRunner(factory)
cmd := &cobra.Command{
Use: "graph",
Aliases: []string{"connections"},
Short: "Shows the application graph for an application.",
Long: `Shows the application graph for an application.`,
Args: cobra.MaximumNArgs(1),
Use: "graph",
Short: "Shows the application graph for an application.",
Long: `Shows the application graph for an application.`,
Args: cobra.MaximumNArgs(1),
Example: `
# Show graph for current application
rad app graph
Expand Down

0 comments on commit e59b3ac

Please sign in to comment.