1
0
mirror of https://github.com/drone/drone-cli.git synced 2025-02-02 04:11:39 +01:00
drone-cli/drone/secret/secret.go
2018-10-21 12:18:43 -07: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,
},
}