25 lines
572 B
Go
25 lines
572 B
Go
package artifact
|
|
|
|
import (
|
|
"github.com/containers/podman/v5/cmd/podman/registry"
|
|
"github.com/containers/podman/v5/cmd/podman/validate"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var (
|
|
// Command: podman _artifact_
|
|
artifactCmd = &cobra.Command{
|
|
Use: "artifact",
|
|
Short: "Manage OCI artifacts",
|
|
Long: "Manage OCI artifacts",
|
|
RunE: validate.SubCommandExists,
|
|
Annotations: map[string]string{registry.EngineMode: registry.ABIMode},
|
|
}
|
|
)
|
|
|
|
func init() {
|
|
registry.Commands = append(registry.Commands, registry.CliCommand{
|
|
Command: artifactCmd,
|
|
})
|
|
}
|