2018-09-01 03:24:14 +02:00
|
|
|
package plugins
|
|
|
|
|
|
|
|
|
|
import (
|
2019-09-19 19:22:36 +02:00
|
|
|
"github.com/drone/drone-cli/drone/plugins/admit"
|
2018-09-01 03:24:14 +02:00
|
|
|
"github.com/drone/drone-cli/drone/plugins/config"
|
2019-09-02 00:58:47 +02:00
|
|
|
"github.com/drone/drone-cli/drone/plugins/convert"
|
2020-11-16 21:42:23 +01:00
|
|
|
"github.com/drone/drone-cli/drone/plugins/environ"
|
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{
|
2019-09-19 19:22:36 +02:00
|
|
|
admit.Command,
|
2018-09-01 03:24:14 +02:00
|
|
|
config.Command,
|
2019-09-02 00:58:47 +02:00
|
|
|
convert.Command,
|
2020-11-16 21:42:23 +01:00
|
|
|
environ.Command,
|
2018-11-27 19:37:48 +01:00
|
|
|
registry.Command,
|
2020-11-16 21:42:23 +01:00
|
|
|
secret.Command,
|
2018-09-01 03:24:14 +02:00
|
|
|
},
|
|
|
|
|
}
|