aboutsummaryrefslogblamecommitdiffstats
path: root/commands/bridge_token_rm.go
blob: 29fdb4f241abaeae6030b16b3db73cfc7453ab10 (plain) (tree)



















                                                                
                                       







                                                   
package commands

import (
	"github.com/spf13/cobra"

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

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

	err = core.RemoveGlobalToken(repo, args[0])
	return err
}

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

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