1
0
mirror of https://github.com/drone/drone-cli.git synced 2026-01-16 07:51:33 +01:00
drone-cli/drone/plugins/plugins.go

19 lines
354 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-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-09-01 03:24:14 +02:00
},
}