mirror of
https://github.com/drone/drone-cli.git
synced 2025-02-22 09:31:18 +01:00
13 lines
223 B
Go
13 lines
223 B
Go
package secret
|
|
|
|
import "github.com/urfave/cli"
|
|
|
|
// Command exports the registry command set.
|
|
var Command = cli.Command{
|
|
Name: "secret",
|
|
Usage: "secret plugin helpers",
|
|
Subcommands: []cli.Command{
|
|
secretFindCmd,
|
|
},
|
|
}
|