MCPcopy Create free account
hub / github.com/compozy/agh / newBridgeSecretBindingsCommand

Function newBridgeSecretBindingsCommand

internal/cli/bridge.go:552–564  ·  view source on GitHub ↗
(deps commandDeps)

Source from the content-addressed store, hash-verified

550}
551
552func 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
566func newBridgeSecretBindingsListCommand(deps commandDeps) *cobra.Command {
567 return &cobra.Command{

Callers 1

newBridgeCommandFunction · 0.85

Tested by

no test coverage detected