woodpecker/drone/registry/registry.go

17 lines
307 B
Go
Raw Normal View History

2017-04-29 17:03:45 +00:00
package registry
2017-04-06 12:51:01 +00:00
import "github.com/urfave/cli"
2017-04-29 17:03:45 +00:00
// Command exports the registry command set.
var Command = cli.Command{
2017-04-06 12:51:01 +00:00
Name: "registry",
Usage: "manage registries",
Subcommands: []cli.Command{
registryCreateCmd,
registryDeleteCmd,
registryUpdateCmd,
registryInfoCmd,
registryListCmd,
},
}