From 061e83d4b4aa66c2691b3699a3e770b2a58d26df Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Mon, 24 Sep 2018 16:24:38 +0200 Subject: commands: add "bridge rm" --- commands/bridge_rm.go | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 commands/bridge_rm.go (limited to 'commands/bridge_rm.go') diff --git a/commands/bridge_rm.go b/commands/bridge_rm.go new file mode 100644 index 00000000..acde9da5 --- /dev/null +++ b/commands/bridge_rm.go @@ -0,0 +1,33 @@ +package commands + +import ( + "github.com/MichaelMure/git-bug/bridge" + "github.com/MichaelMure/git-bug/cache" + "github.com/spf13/cobra" +) + +func runBridgeRm(cmd *cobra.Command, args []string) error { + backend, err := cache.NewRepoCache(repo) + if err != nil { + return err + } + defer backend.Close() + + err = bridge.RemoveBridges(backend, args[0]) + if err != nil { + return err + } + + return nil +} + +var bridgeRmCmd = &cobra.Command{ + Use: "rm name ", + Short: "Delete a configured bridge", + RunE: runBridgeRm, + Args: cobra.ExactArgs(1), +} + +func init() { + bridgeCmd.AddCommand(bridgeRmCmd) +} -- cgit