2016-04-23 11:27:28 +00:00
|
|
|
package main
|
|
|
|
|
2017-04-11 17:06:45 +00:00
|
|
|
import "github.com/urfave/cli"
|
2016-04-23 11:27:28 +00:00
|
|
|
|
2016-05-06 17:59:36 +00:00
|
|
|
var secretCmd = cli.Command{
|
2016-04-23 11:27:28 +00:00
|
|
|
Name: "secret",
|
|
|
|
Usage: "manage secrets",
|
|
|
|
Subcommands: []cli.Command{
|
2017-04-11 17:06:45 +00:00
|
|
|
secretCreateCmd,
|
|
|
|
secretDeleteCmd,
|
|
|
|
secretUpdateCmd,
|
|
|
|
secretInfoCmd,
|
2016-06-27 21:06:02 +00:00
|
|
|
secretListCmd,
|
2016-04-23 11:27:28 +00:00
|
|
|
},
|
|
|
|
}
|