mirror of
https://github.com/drone/drone-cli.git
synced 2024-11-23 01:11:57 +01:00
27 lines
636 B
Go
27 lines
636 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/environ"
|
|
"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,
|
|
environ.Command,
|
|
registry.Command,
|
|
secret.Command,
|
|
},
|
|
}
|