From ca52575628dcbf21a5159c65ba1fa43f346a258a Mon Sep 17 00:00:00 2001 From: Neelam <117125370+neelam-harness@users.noreply.github.com> Date: Tue, 21 May 2024 09:37:49 -0700 Subject: [PATCH] feat: [PL-51125]: Remove the unimplemented option LIST and DELETE from the connector command (#70) --- main.go | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/main.go b/main.go index 4b35f0f..db68ec5 100644 --- a/main.go +++ b/main.go @@ -265,7 +265,7 @@ func main() { { Name: "connector", Aliases: []string{"conn"}, - Usage: "Connector specific commands, eg: apply (create/update), delete, list", + Usage: "Connector specific commands, eg: apply (create/update)", Flags: []cli.Flag{ &cli.StringFlag{ Name: "file", @@ -331,13 +331,6 @@ func main() { return cliWrapper(applyConnector, context) }, }, - { - Name: "delete", - Usage: "Delete a connector.", - Action: func(context *cli.Context) error { - return cliWrapper(deleteConnector, context) - }, - }, }, }, {