restic/cmd/restic/cmd_key.go

20 lines
314 B
Go
Raw Normal View History

2014-11-25 16:52:53 -05:00
package main
import (
2017-03-08 14:17:30 -05:00
"github.com/spf13/cobra"
2014-11-25 16:52:53 -05:00
)
2016-09-17 06:36:05 -04:00
var cmdKey = &cobra.Command{
Use: "key",
Short: "Manage keys (passwords)",
2016-09-17 06:36:05 -04:00
Long: `
The "key" command allows you to set multiple access keys or passwords
per repository.
`,
GroupID: cmdGroupDefault,
}
2014-12-07 10:30:52 -05:00
2014-11-30 16:39:58 -05:00
func init() {
2016-09-17 06:36:05 -04:00
cmdRoot.AddCommand(cmdKey)
}