1
0
mirror of https://github.com/drone/drone-cli.git synced 2026-01-15 23:41:33 +01:00
drone-cli/drone/plugins/plugins.go
2018-08-31 19:16:18 -07:00

19 lines
354 B
Go

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