mirror of
https://github.com/drone/drone-cli.git
synced 2024-11-27 11:54:37 +01:00
17 lines
284 B
Go
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,
|
|
},
|
|
}
|