1
0
mirror of https://github.com/drone/drone-cli.git synced 2026-01-17 00:21:32 +01:00
drone-cli/drone/plugins/plugins.go

27 lines
636 B
Go
Raw Normal View History

2018-09-01 03:24:14 +02:00
package plugins
import (
"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{
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
},
}