mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-23 20:35:24 +01:00
28 lines
392 B
Go
28 lines
392 B
Go
package cmd
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
type vaultArgs struct {
|
|
oldKey string
|
|
}
|
|
|
|
var targetVaultArgs vaultArgs
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(vaultCmd)
|
|
}
|
|
|
|
var vaultCmd = &cobra.Command{
|
|
Use: "vaults",
|
|
Aliases: []string{"vault"},
|
|
Short: "Manage access keys and other secrets",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
_ = cmd.Help()
|
|
os.Exit(0)
|
|
},
|
|
}
|