harness-drone/drone/secret/secret.go

17 lines
284 B
Go
Raw Normal View History

2017-04-29 17:03:45 +00:00
package secret
2016-04-23 11:27:28 +00:00
import "github.com/urfave/cli"
2016-04-23 11:27:28 +00:00
2017-04-29 17:03:45 +00:00
// Command exports the secret command.
var Command = cli.Command{
2016-04-23 11:27:28 +00:00
Name: "secret",
Usage: "manage secrets",
Subcommands: []cli.Command{
secretCreateCmd,
secretDeleteCmd,
secretUpdateCmd,
secretInfoCmd,
secretListCmd,
2016-04-23 11:27:28 +00:00
},
}