1
0
mirror of https://github.com/drone/drone-cli.git synced 2026-01-20 18:01:34 +01:00
drone-cli/drone/plugins/plugins.go
2019-09-19 10:22:36 -07:00

25 lines
565 B
Go

package plugins
import (
"github.com/drone/drone-cli/drone/plugins/admit"
"github.com/drone/drone-cli/drone/plugins/config"
"github.com/drone/drone-cli/drone/plugins/convert"
"github.com/drone/drone-cli/drone/plugins/registry"
"github.com/drone/drone-cli/drone/plugins/secret"
"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,
config.Command,
convert.Command,
secret.Command,
registry.Command,
},
}