restic/cmd/restic/cmd_key.go

19 lines
277 B
Go
Raw Permalink Normal View History

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