Files
restic/cmd/restic/cmd_key.go
2025-10-03 18:55:46 +02:00

27 lines
544 B
Go

package main
import (
"github.com/spf13/cobra"
)
func newKeyCommand(globalOptions *GlobalOptions) *cobra.Command {
cmd := &cobra.Command{
Use: "key",
Short: "Manage keys (passwords)",
Long: `
The "key" command allows you to set multiple access keys or passwords
per repository.
`,
DisableAutoGenTag: true,
GroupID: cmdGroupDefault,
}
cmd.AddCommand(
newKeyAddCommand(globalOptions),
newKeyListCommand(globalOptions),
newKeyPasswdCommand(globalOptions),
newKeyRemoveCommand(globalOptions),
)
return cmd
}