(deps commandDeps)
| 550 | } |
| 551 | |
| 552 | func newBridgeSecretBindingsCommand(deps commandDeps) *cobra.Command { |
| 553 | cmd := &cobra.Command{ |
| 554 | Use: "secret-bindings", |
| 555 | Short: "Manage bridge secret bindings", |
| 556 | RunE: func(cmd *cobra.Command, _ []string) error { |
| 557 | return cmd.Help() |
| 558 | }, |
| 559 | } |
| 560 | cmd.AddCommand(newBridgeSecretBindingsListCommand(deps)) |
| 561 | cmd.AddCommand(newBridgeSecretBindingsPutCommand(deps)) |
| 562 | cmd.AddCommand(newBridgeSecretBindingsDeleteCommand(deps)) |
| 563 | return cmd |
| 564 | } |
| 565 | |
| 566 | func newBridgeSecretBindingsListCommand(deps commandDeps) *cobra.Command { |
| 567 | return &cobra.Command{ |
no test coverage detected