2018-09-01 03:24:14 +02:00
|
|
|
package plugins
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/drone/drone-cli/drone/plugins/config"
|
2018-11-27 19:37:48 +01:00
|
|
|
"github.com/drone/drone-cli/drone/plugins/registry"
|
2018-09-01 04:16:18 +02:00
|
|
|
"github.com/drone/drone-cli/drone/plugins/secret"
|
2018-09-01 03:24:14 +02:00
|
|
|
|
|
|
|
|
"github.com/urfave/cli"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// Command exports the registry command set.
|
|
|
|
|
var Command = cli.Command{
|
|
|
|
|
Name: "plugins",
|
|
|
|
|
Usage: "plugin helper functions",
|
|
|
|
|
Subcommands: []cli.Command{
|
|
|
|
|
config.Command,
|
2018-09-01 04:16:18 +02:00
|
|
|
secret.Command,
|
2018-11-27 19:37:48 +01:00
|
|
|
registry.Command,
|
2018-09-01 03:24:14 +02:00
|
|
|
},
|
|
|
|
|
}
|