1
0
Fork 0
mirror of https://github.com/drone/drone-cli.git synced 2024-05-27 01:06:02 +02:00
drone-cli/drone/registry/registry.go
2017-05-15 13:59:26 +02:00

17 lines
307 B
Go

package registry
import "github.com/urfave/cli"
// Command exports the registry command set.
var Command = cli.Command{
Name: "registry",
Usage: "manage registries",
Subcommands: []cli.Command{
registryCreateCmd,
registryDeleteCmd,
registryUpdateCmd,
registryInfoCmd,
registryListCmd,
},
}