16 lines
284 B
Go
16 lines
284 B
Go
package secret
|
|
|
|
import "github.com/urfave/cli"
|
|
|
|
// Command exports the secret command.
|
|
var Command = cli.Command{
|
|
Name: "secret",
|
|
Usage: "manage secrets",
|
|
Subcommands: []cli.Command{
|
|
secretCreateCmd,
|
|
secretDeleteCmd,
|
|
secretUpdateCmd,
|
|
secretInfoCmd,
|
|
secretListCmd,
|
|
},
|
|
}
|