aboutsummaryrefslogtreecommitdiffstats
path: root/commands/bridge_token_rm.go
blob: a73fbb914e7dc678156efc5a5294fe8005175b75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package commands

import (
	"fmt"

	"github.com/spf13/cobra"

	"github.com/MichaelMure/git-bug/bridge/core"
)

func runBridgeTokenRm(cmd *cobra.Command, args []string) error {
	token, err := core.LoadTokenPrefix(repo, args[0])
	if err != nil {
		return err
	}

	err = core.RemoveToken(repo, token.ID())
	if err != nil {
		return err
	}

	fmt.Printf("token %s removed\n", token.ID())
	return nil
}

var bridgeTokenRmCmd = &cobra.Command{
	Use:     "rm <id>",
	Short:   "Remove a token.",
	PreRunE: loadRepo,
	RunE:    runBridgeTokenRm,
	Args:    cobra.ExactArgs(1),
}

func init() {
	bridgeTokenCmd.AddCommand(bridgeTokenRmCmd)
}