mirror of
https://github.com/drone/drone-cli.git
synced 2026-01-17 00:21:32 +01:00
23 lines
498 B
Go
23 lines
498 B
Go
package plugins
|
|
|
|
import (
|
|
"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{
|
|
config.Command,
|
|
convert.Command,
|
|
secret.Command,
|
|
registry.Command,
|
|
},
|
|
}
|