mirror of
https://github.com/drone/drone-cli.git
synced 2026-01-15 23:41:33 +01:00
19 lines
354 B
Go
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,
|
|
},
|
|
}
|