Files
woodpecker/cli/registry/registry.go
2023-11-08 20:27:37 +01:00

22 lines
392 B
Go

package registry
import (
"github.com/urfave/cli/v2"
"go.woodpecker-ci.org/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,
},
}