mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-23 10:21:00 +00:00
798c2bc8b2
* migrate urfave/ci v1 -> v2 * refactor cli (format flag) * log error if agent can not listen on port 3000 close #452
21 lines
396 B
Go
21 lines
396 B
Go
package registry
|
|
|
|
import (
|
|
"github.com/urfave/cli/v2"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/cli/common"
|
|
)
|
|
|
|
// Command exports the registry command set.
|
|
var Command = &cli.Command{
|
|
Name: "registry",
|
|
Usage: "manage registries",
|
|
Flags: common.GlobalFlags,
|
|
Subcommands: []*cli.Command{
|
|
registryCreateCmd,
|
|
registryDeleteCmd,
|
|
registryUpdateCmd,
|
|
registryInfoCmd,
|
|
registryListCmd,
|
|
},
|
|
}
|