1
0
mirror of https://github.com/drone/drone-cli.git synced 2026-01-16 16:01:35 +01:00
drone-cli/drone/plugins/plugins.go
2018-11-27 10:37:48 -08:00

21 lines
427 B
Go

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