carapace-bin/git_completer/cmd/credential_store_generated.go
2020-04-20 22:58:56 +02:00

18 lines
376 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
var credential_storeCmd = &cobra.Command{
Use: "credential-store",
Short: "Helper to store credentials on disk",
Run: func(cmd *cobra.Command, args []string) {
},
}
func init() {
credential_storeCmd.Flags().String("file", "", "fetch and store credentials in <path>")
rootCmd.AddCommand(credential_storeCmd)
}