2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-28 22:50:48 +00:00
restic/cmd/restic/cmd_key.go

19 lines
277 B
Go
Raw Normal View History

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