1
0
mirror of https://github.com/drone/drone-cli.git synced 2025-02-02 04:11:39 +01:00
drone-cli/drone/orgsecret/secret.go
2019-04-15 08:24:03 -07:00

17 lines
303 B
Go

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