harness-drone/drone/registry.go

16 lines
262 B
Go
Raw Normal View History

2017-04-06 12:51:01 +00:00
package main
import "github.com/urfave/cli"
var registryCmd = cli.Command{
Name: "registry",
Usage: "manage registries",
Subcommands: []cli.Command{
registryCreateCmd,
registryDeleteCmd,
registryUpdateCmd,
registryInfoCmd,
registryListCmd,
},
}