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

21 lines
427 B
Go
Raw Normal View History

2018-09-01 03:24:14 +02:00
package plugins
import (
"github.com/drone/drone-cli/drone/plugins/config"
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{
config.Command,
2018-09-01 04:16:18 +02:00
secret.Command,
2018-11-27 19:37:48 +01:00
registry.Command,
2018-09-01 03:24:14 +02:00
},
}