restic/cmd/restic/cmd_key.go
2024-08-23 23:49:20 +02:00

20 lines
340 B
Go

package main
import (
"github.com/spf13/cobra"
)
var cmdKey = &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,
}
func init() {
cmdRoot.AddCommand(cmdKey)
}