41af9c0720
Since we are not able to list the already set secrets I have added the required API andpoint and the required sub command to list them.
13 lines
211 B
Go
13 lines
211 B
Go
package main
|
|
|
|
import "github.com/codegangsta/cli"
|
|
|
|
var secretCmd = cli.Command{
|
|
Name: "secret",
|
|
Usage: "manage secrets",
|
|
Subcommands: []cli.Command{
|
|
secretAddCmd,
|
|
secretRemoveCmd,
|
|
secretListCmd,
|
|
},
|
|
}
|