1
0
mirror of https://github.com/drone/drone-cli.git synced 2024-11-27 11:54:37 +01:00
drone-cli/drone/secret/secret.go
2017-05-15 13:59:26 +02:00

17 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,
},
}