1
0
mirror of https://github.com/drone/drone-cli.git synced 2025-02-02 04:11:39 +01:00
drone-cli/drone/plugins/registry/registry.go
2018-11-27 10:37:48 -08:00

13 lines
231 B
Go

package registry
import "github.com/urfave/cli"
// Command exports the registry command set.
var Command = cli.Command{
Name: "registry",
Usage: "registry plugin helpers",
Subcommands: []cli.Command{
registryListCmd,
},
}