mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-29 11:50:37 +00:00
188b9e6eb5
- move cli files from `cli/drone` to `cli/` - move cli main to `cmd/cli/main.go` to match agent and server - use version from `version/version.go` to match agent and server
16 lines
307 B
Go
16 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,
|
|
},
|
|
}
|