aboutsummaryrefslogtreecommitdiffstats
path: root/commands/bridge_auth_rm.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2022-09-10 11:09:19 +0200
committerMichael Muré <batolettre@gmail.com>2022-11-20 17:18:09 +0100
commitacc9a6f3a6df2961c3ae44352216d915cb9b5315 (patch)
treee159372673104ade1f15ddc1a84aa9da93e93552 /commands/bridge_auth_rm.go
parenta3fa445a9c76631c4cd16f93e1c1c68a954adef7 (diff)
downloadgit-bug-acc9a6f3a6df2961c3ae44352216d915cb9b5315.tar.gz
commands: reorg into different packages
Diffstat (limited to 'commands/bridge_auth_rm.go')
-rw-r--r--commands/bridge_auth_rm.go39
1 files changed, 0 insertions, 39 deletions
diff --git a/commands/bridge_auth_rm.go b/commands/bridge_auth_rm.go
deleted file mode 100644
index a28057de..00000000
--- a/commands/bridge_auth_rm.go
+++ /dev/null
@@ -1,39 +0,0 @@
-package commands
-
-import (
- "github.com/spf13/cobra"
-
- "github.com/MichaelMure/git-bug/bridge/core/auth"
-)
-
-func newBridgeAuthRm() *cobra.Command {
- env := newEnv()
-
- cmd := &cobra.Command{
- Use: "rm ID",
- Short: "Remove a credential.",
- PreRunE: loadRepo(env),
- RunE: func(cmd *cobra.Command, args []string) error {
- return runBridgeAuthRm(env, args)
- },
- Args: cobra.ExactArgs(1),
- ValidArgsFunction: completeBridgeAuth(env),
- }
-
- return cmd
-}
-
-func runBridgeAuthRm(env *Env, args []string) error {
- cred, err := auth.LoadWithPrefix(env.repo, args[0])
- if err != nil {
- return err
- }
-
- err = auth.Remove(env.repo, cred.ID())
- if err != nil {
- return err
- }
-
- env.out.Printf("credential %s removed\n", cred.ID())
- return nil
-}