Skip to content

Commit

Permalink
Merge pull request #919 from jeremyrickard/update-go-version
Browse files Browse the repository at this point in the history
Update module version to v4
  • Loading branch information
k8s-ci-robot authored Jun 13, 2023
2 parents 8091bce + 2f68f11 commit edb09c2
Show file tree
Hide file tree
Showing 64 changed files with 169 additions and 169 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Artifact Promotion Tooling

[![PkgGoDev](https://pkg.go.dev/badge/sigs.k8s.io/promo-tools/v3)](https://pkg.go.dev/sigs.k8s.io/promo-tools/v3)
[![Go Report Card](https://goreportcard.com/badge/sigs.k8s.io/promo-tools/v3)](https://goreportcard.com/report/sigs.k8s.io/promo-tools/v3)
[![PkgGoDev](https://pkg.go.dev/badge/sigs.k8s.io/promo-tools/v4)](https://pkg.go.dev/sigs.k8s.io/promo-tools/v4)
[![Go Report Card](https://goreportcard.com/badge/sigs.k8s.io/promo-tools/v4)](https://goreportcard.com/report/sigs.k8s.io/promo-tools/v4)
[![Slack](https://img.shields.io/badge/Slack-%23release--management-blueviolet)](https://kubernetes.slack.com/archives/C2C40FMNF)

This repository contains a suite of tools responsible for artifact promotion
Expand Down Expand Up @@ -68,7 +68,7 @@ Requirements:
If you're interested in installing `kpromo` from a tag:

```console
go install sigs.k8s.io/promo-tools/v3/cmd/kpromo@<tag>
go install sigs.k8s.io/promo-tools/v4/cmd/kpromo@<tag>
$(go env GOPATH)/bin/kpromo <subcommand>
```

Expand Down
2 changes: 1 addition & 1 deletion api/files/manifest_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"strings"
"testing"

"sigs.k8s.io/promo-tools/v3/api/files"
"sigs.k8s.io/promo-tools/v4/api/files"
)

func TestValidateFilestores(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion cmd/kpromo/cmd/cip/audit.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (

"github.com/spf13/cobra"

"sigs.k8s.io/promo-tools/v3/internal/legacy/cli"
"sigs.k8s.io/promo-tools/v4/internal/legacy/cli"
)

// auditCmd represents the base command when called without any subcommands
Expand Down
6 changes: 3 additions & 3 deletions cmd/kpromo/cmd/cip/cip.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ import (
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"

"sigs.k8s.io/promo-tools/v3/internal/legacy/cli"
promoter "sigs.k8s.io/promo-tools/v3/promoter/image"
options "sigs.k8s.io/promo-tools/v3/promoter/image/options"
"sigs.k8s.io/promo-tools/v4/internal/legacy/cli"
promoter "sigs.k8s.io/promo-tools/v4/promoter/image"
options "sigs.k8s.io/promo-tools/v4/promoter/image/options"
)

// CipCmd represents the base command when called without any subcommands
Expand Down
2 changes: 1 addition & 1 deletion cmd/kpromo/cmd/gh/gh.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import (
"github.com/spf13/pflag"
"gopkg.in/yaml.v2"

"sigs.k8s.io/promo-tools/v3/gh2gcs"
"sigs.k8s.io/promo-tools/v4/gh2gcs"
"sigs.k8s.io/release-sdk/gcli"
"sigs.k8s.io/release-sdk/github"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/kpromo/cmd/manifest/files.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (

"github.com/spf13/cobra"

"sigs.k8s.io/promo-tools/v3/promobot"
"sigs.k8s.io/promo-tools/v4/promobot"
"sigs.k8s.io/yaml"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/kpromo/cmd/manifest/validate.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"

"sigs.k8s.io/promo-tools/v3/promobot"
"sigs.k8s.io/promo-tools/v4/promobot"
)

// validateCmd takes a set of manifests and checks them
Expand Down
2 changes: 1 addition & 1 deletion cmd/kpromo/cmd/mm/mm.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (

"github.com/spf13/cobra"

"sigs.k8s.io/promo-tools/v3/image/manifest"
"sigs.k8s.io/promo-tools/v4/image/manifest"
)

// TODO(cip-mm): Remove in the next minor release.
Expand Down
4 changes: 2 additions & 2 deletions cmd/kpromo/cmd/pr/pr.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ import (
"sigs.k8s.io/release-sdk/github"
"sigs.k8s.io/release-utils/util"

"sigs.k8s.io/promo-tools/v3/image"
"sigs.k8s.io/promo-tools/v3/image/manifest"
"sigs.k8s.io/promo-tools/v4/image"
"sigs.k8s.io/promo-tools/v4/image/manifest"
)

const (
Expand Down
14 changes: 7 additions & 7 deletions cmd/kpromo/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ import (
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"

"sigs.k8s.io/promo-tools/v3/cmd/kpromo/cmd/cip"
"sigs.k8s.io/promo-tools/v3/cmd/kpromo/cmd/gh"
"sigs.k8s.io/promo-tools/v3/cmd/kpromo/cmd/manifest"
"sigs.k8s.io/promo-tools/v3/cmd/kpromo/cmd/mm"
"sigs.k8s.io/promo-tools/v3/cmd/kpromo/cmd/pr"
"sigs.k8s.io/promo-tools/v3/cmd/kpromo/cmd/run"
"sigs.k8s.io/promo-tools/v3/cmd/kpromo/cmd/sigcheck"
"sigs.k8s.io/promo-tools/v4/cmd/kpromo/cmd/cip"
"sigs.k8s.io/promo-tools/v4/cmd/kpromo/cmd/gh"
"sigs.k8s.io/promo-tools/v4/cmd/kpromo/cmd/manifest"
"sigs.k8s.io/promo-tools/v4/cmd/kpromo/cmd/mm"
"sigs.k8s.io/promo-tools/v4/cmd/kpromo/cmd/pr"
"sigs.k8s.io/promo-tools/v4/cmd/kpromo/cmd/run"
"sigs.k8s.io/promo-tools/v4/cmd/kpromo/cmd/sigcheck"
"sigs.k8s.io/release-utils/log"
"sigs.k8s.io/release-utils/version"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/kpromo/cmd/run/files.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (

"github.com/spf13/cobra"

"sigs.k8s.io/promo-tools/v3/promobot"
"sigs.k8s.io/promo-tools/v4/promobot"
)

// filesCmd represents the subcommand for `kpromo run files`
Expand Down
4 changes: 2 additions & 2 deletions cmd/kpromo/cmd/sigcheck/sigcheck.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ package sigcheck

import (
"github.com/spf13/cobra"
imagepromoter "sigs.k8s.io/promo-tools/v3/promoter/image"
promoteropts "sigs.k8s.io/promo-tools/v3/promoter/image/options"
imagepromoter "sigs.k8s.io/promo-tools/v4/promoter/image"
promoteropts "sigs.k8s.io/promo-tools/v4/promoter/image/options"
)

func Add(parent *cobra.Command) {
Expand Down
2 changes: 1 addition & 1 deletion cmd/kpromo/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ limitations under the License.

package main

import "sigs.k8s.io/promo-tools/v3/cmd/kpromo/cmd"
import "sigs.k8s.io/promo-tools/v4/cmd/kpromo/cmd"

func main() {
cmd.Execute()
Expand Down
4 changes: 2 additions & 2 deletions docs/promotion-pull-requests.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ First, take the following steps to prepare your environment for promoting images
- Install the [promotion tooling](/README.md#installation):

```shell
go install sigs.k8s.io/promo-tools/v3/cmd/kpromo@latest
go install sigs.k8s.io/promo-tools/v4/cmd/kpromo@latest
```

> Note: If kpromo has not yet published a [minor release](https://github.com/kubernetes-sigs/promo-tools/releases) and you desire to run the actual latest version. Specify it explicitly with the full version, for example: `go install sigs.k8s.io/promo-tools/v3/cmd/[email protected]`.
> Note: If kpromo has not yet published a [minor release](https://github.com/kubernetes-sigs/promo-tools/releases) and you desire to run the actual latest version. Specify it explicitly with the full version, for example: `go install sigs.k8s.io/promo-tools/v4/cmd/[email protected]`.
- Promoting images will require a GitHub Personal Access Token in order to
create a PR on your behalf.
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module sigs.k8s.io/promo-tools/v3
module sigs.k8s.io/promo-tools/v4

go 1.20

Expand Down
8 changes: 4 additions & 4 deletions image/manifest/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ import (
"github.com/sirupsen/logrus"
"golang.org/x/xerrors"

reg "sigs.k8s.io/promo-tools/v3/internal/legacy/dockerregistry"
"sigs.k8s.io/promo-tools/v3/internal/legacy/dockerregistry/registry"
"sigs.k8s.io/promo-tools/v3/internal/legacy/dockerregistry/schema"
"sigs.k8s.io/promo-tools/v3/types/image"
reg "sigs.k8s.io/promo-tools/v4/internal/legacy/dockerregistry"
"sigs.k8s.io/promo-tools/v4/internal/legacy/dockerregistry/registry"
"sigs.k8s.io/promo-tools/v4/internal/legacy/dockerregistry/schema"
"sigs.k8s.io/promo-tools/v4/types/image"
)

const (
Expand Down
8 changes: 4 additions & 4 deletions image/manifest/manifest_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ import (
"github.com/stretchr/testify/require"
"golang.org/x/xerrors"

"sigs.k8s.io/promo-tools/v3/image/manifest"
"sigs.k8s.io/promo-tools/v3/internal/legacy/dockerregistry/registry"
"sigs.k8s.io/promo-tools/v3/internal/legacy/dockerregistry/schema"
"sigs.k8s.io/promo-tools/v3/types/image"
"sigs.k8s.io/promo-tools/v4/image/manifest"
"sigs.k8s.io/promo-tools/v4/internal/legacy/dockerregistry/registry"
"sigs.k8s.io/promo-tools/v4/internal/legacy/dockerregistry/schema"
"sigs.k8s.io/promo-tools/v4/types/image"
)

// TODO: Consider merging this with bazelTestPath() from inventory
Expand Down
12 changes: 6 additions & 6 deletions internal/legacy/audit/auditor.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ import (
"cloud.google.com/go/errorreporting"
"github.com/sirupsen/logrus"

reg "sigs.k8s.io/promo-tools/v3/internal/legacy/dockerregistry"
"sigs.k8s.io/promo-tools/v3/internal/legacy/dockerregistry/registry"
"sigs.k8s.io/promo-tools/v3/internal/legacy/dockerregistry/schema"
"sigs.k8s.io/promo-tools/v3/internal/legacy/logclient"
"sigs.k8s.io/promo-tools/v3/internal/legacy/remotemanifest"
"sigs.k8s.io/promo-tools/v3/internal/legacy/report"
reg "sigs.k8s.io/promo-tools/v4/internal/legacy/dockerregistry"
"sigs.k8s.io/promo-tools/v4/internal/legacy/dockerregistry/registry"
"sigs.k8s.io/promo-tools/v4/internal/legacy/dockerregistry/schema"
"sigs.k8s.io/promo-tools/v4/internal/legacy/logclient"
"sigs.k8s.io/promo-tools/v4/internal/legacy/remotemanifest"
"sigs.k8s.io/promo-tools/v4/internal/legacy/report"
)

// InitRealServerContext creates a ServerContext with facilities that are meant
Expand Down
16 changes: 8 additions & 8 deletions internal/legacy/audit/auditor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ import (

"github.com/stretchr/testify/require"

"sigs.k8s.io/promo-tools/v3/internal/legacy/audit"
reg "sigs.k8s.io/promo-tools/v3/internal/legacy/dockerregistry"
"sigs.k8s.io/promo-tools/v3/internal/legacy/dockerregistry/registry"
"sigs.k8s.io/promo-tools/v3/internal/legacy/dockerregistry/schema"
"sigs.k8s.io/promo-tools/v3/internal/legacy/logclient"
"sigs.k8s.io/promo-tools/v3/internal/legacy/remotemanifest"
"sigs.k8s.io/promo-tools/v3/internal/legacy/report"
"sigs.k8s.io/promo-tools/v3/internal/legacy/stream"
"sigs.k8s.io/promo-tools/v4/internal/legacy/audit"
reg "sigs.k8s.io/promo-tools/v4/internal/legacy/dockerregistry"
"sigs.k8s.io/promo-tools/v4/internal/legacy/dockerregistry/registry"
"sigs.k8s.io/promo-tools/v4/internal/legacy/dockerregistry/schema"
"sigs.k8s.io/promo-tools/v4/internal/legacy/logclient"
"sigs.k8s.io/promo-tools/v4/internal/legacy/remotemanifest"
"sigs.k8s.io/promo-tools/v4/internal/legacy/report"
"sigs.k8s.io/promo-tools/v4/internal/legacy/stream"
)

func TestParsePubSubMessageBody(t *testing.T) {
Expand Down
12 changes: 6 additions & 6 deletions internal/legacy/audit/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ limitations under the License.
package audit

import (
reg "sigs.k8s.io/promo-tools/v3/internal/legacy/dockerregistry"
"sigs.k8s.io/promo-tools/v3/internal/legacy/dockerregistry/registry"
"sigs.k8s.io/promo-tools/v3/internal/legacy/logclient"
"sigs.k8s.io/promo-tools/v3/internal/legacy/remotemanifest"
"sigs.k8s.io/promo-tools/v3/internal/legacy/report"
"sigs.k8s.io/promo-tools/v3/internal/legacy/stream"
reg "sigs.k8s.io/promo-tools/v4/internal/legacy/dockerregistry"
"sigs.k8s.io/promo-tools/v4/internal/legacy/dockerregistry/registry"
"sigs.k8s.io/promo-tools/v4/internal/legacy/logclient"
"sigs.k8s.io/promo-tools/v4/internal/legacy/remotemanifest"
"sigs.k8s.io/promo-tools/v4/internal/legacy/report"
"sigs.k8s.io/promo-tools/v4/internal/legacy/stream"
)

// GcrReadingFacility holds functions used to create streams for reading the
Expand Down
6 changes: 3 additions & 3 deletions internal/legacy/cli/audit.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ import (
guuid "github.com/google/uuid"
"github.com/sirupsen/logrus"

"sigs.k8s.io/promo-tools/v3/internal/legacy/audit"
"sigs.k8s.io/promo-tools/v3/internal/legacy/reqcounter"
"sigs.k8s.io/promo-tools/v3/internal/legacy/signals"
"sigs.k8s.io/promo-tools/v4/internal/legacy/audit"
"sigs.k8s.io/promo-tools/v4/internal/legacy/reqcounter"
"sigs.k8s.io/promo-tools/v4/internal/legacy/signals"
)

type AuditOptions struct {
Expand Down
4 changes: 2 additions & 2 deletions internal/legacy/cli/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (
"time"

"github.com/sirupsen/logrus"
promoter "sigs.k8s.io/promo-tools/v3/promoter/image"
options "sigs.k8s.io/promo-tools/v3/promoter/image/options"
promoter "sigs.k8s.io/promo-tools/v4/promoter/image"
options "sigs.k8s.io/promo-tools/v4/promoter/image/options"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion internal/legacy/dockerregistry/checks.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
"google.golang.org/api/iterator"
grafeaspb "google.golang.org/genproto/googleapis/grafeas/v1"

"sigs.k8s.io/promo-tools/v3/internal/legacy/stream"
"sigs.k8s.io/promo-tools/v4/internal/legacy/stream"
)

// MKImageVulnCheck returns an instance of ImageVulnCheck which
Expand Down
4 changes: 2 additions & 2 deletions internal/legacy/dockerregistry/checks_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ import (
"github.com/stretchr/testify/require"
grafeaspb "google.golang.org/genproto/googleapis/grafeas/v1"

reg "sigs.k8s.io/promo-tools/v3/internal/legacy/dockerregistry"
"sigs.k8s.io/promo-tools/v3/types/image"
reg "sigs.k8s.io/promo-tools/v4/internal/legacy/dockerregistry"
"sigs.k8s.io/promo-tools/v4/types/image"
)

// TestImageVulnCheck uses a fake populateRequests function and a fake
Expand Down
16 changes: 8 additions & 8 deletions internal/legacy/dockerregistry/inventory.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ import (
ggcrV1Types "github.com/google/go-containerregistry/pkg/v1/types"
"github.com/sirupsen/logrus"

"sigs.k8s.io/promo-tools/v3/internal/legacy/dockerregistry/registry"
"sigs.k8s.io/promo-tools/v3/internal/legacy/dockerregistry/schema"
"sigs.k8s.io/promo-tools/v3/internal/legacy/gcloud"
cipJson "sigs.k8s.io/promo-tools/v3/internal/legacy/json"
"sigs.k8s.io/promo-tools/v3/internal/legacy/reqcounter"
"sigs.k8s.io/promo-tools/v3/internal/legacy/stream"
"sigs.k8s.io/promo-tools/v3/promoter/image/ratelimit"
"sigs.k8s.io/promo-tools/v3/types/image"
"sigs.k8s.io/promo-tools/v4/internal/legacy/dockerregistry/registry"
"sigs.k8s.io/promo-tools/v4/internal/legacy/dockerregistry/schema"
"sigs.k8s.io/promo-tools/v4/internal/legacy/gcloud"
cipJson "sigs.k8s.io/promo-tools/v4/internal/legacy/json"
"sigs.k8s.io/promo-tools/v4/internal/legacy/reqcounter"
"sigs.k8s.io/promo-tools/v4/internal/legacy/stream"
"sigs.k8s.io/promo-tools/v4/promoter/image/ratelimit"
"sigs.k8s.io/promo-tools/v4/types/image"
)

// MakeSyncContext creates a SyncContext.
Expand Down
12 changes: 6 additions & 6 deletions internal/legacy/dockerregistry/inventory_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ import (
cr "github.com/google/go-containerregistry/pkg/v1/types"
"github.com/stretchr/testify/require"

reg "sigs.k8s.io/promo-tools/v3/internal/legacy/dockerregistry"
"sigs.k8s.io/promo-tools/v3/internal/legacy/dockerregistry/registry"
"sigs.k8s.io/promo-tools/v3/internal/legacy/dockerregistry/schema"
"sigs.k8s.io/promo-tools/v3/internal/legacy/json"
"sigs.k8s.io/promo-tools/v3/internal/legacy/stream"
"sigs.k8s.io/promo-tools/v3/types/image"
reg "sigs.k8s.io/promo-tools/v4/internal/legacy/dockerregistry"
"sigs.k8s.io/promo-tools/v4/internal/legacy/dockerregistry/registry"
"sigs.k8s.io/promo-tools/v4/internal/legacy/dockerregistry/schema"
"sigs.k8s.io/promo-tools/v4/internal/legacy/json"
"sigs.k8s.io/promo-tools/v4/internal/legacy/stream"
"sigs.k8s.io/promo-tools/v4/types/image"
)

type ParseJSONStreamResult struct {
Expand Down
4 changes: 2 additions & 2 deletions internal/legacy/dockerregistry/registry/context.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ package registry
import (
"fmt"

"sigs.k8s.io/promo-tools/v3/internal/legacy/gcloud"
"sigs.k8s.io/promo-tools/v3/types/image"
"sigs.k8s.io/promo-tools/v4/internal/legacy/gcloud"
"sigs.k8s.io/promo-tools/v4/types/image"
)

// Context holds information about a registry, to be written in a
Expand Down
2 changes: 1 addition & 1 deletion internal/legacy/dockerregistry/registry/registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"sort"
"strings"

"sigs.k8s.io/promo-tools/v3/types/image"
"sigs.k8s.io/promo-tools/v4/types/image"
)

// Image holds information about an image. It's like an "Object" in the OOP
Expand Down
4 changes: 2 additions & 2 deletions internal/legacy/dockerregistry/registry/set.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ limitations under the License.
package registry

import (
"sigs.k8s.io/promo-tools/v3/internal/legacy/container"
"sigs.k8s.io/promo-tools/v3/types/image"
"sigs.k8s.io/promo-tools/v4/internal/legacy/container"
"sigs.k8s.io/promo-tools/v4/types/image"
)

// Various set manipulation operations. Some set operations are missing,
Expand Down
4 changes: 2 additions & 2 deletions internal/legacy/dockerregistry/schema/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ import (
"github.com/sirupsen/logrus"
"gopkg.in/yaml.v2"

"sigs.k8s.io/promo-tools/v3/internal/legacy/dockerregistry/registry"
"sigs.k8s.io/promo-tools/v3/types/image"
"sigs.k8s.io/promo-tools/v4/internal/legacy/dockerregistry/registry"
"sigs.k8s.io/promo-tools/v4/types/image"
"sigs.k8s.io/release-utils/command"
)

Expand Down
8 changes: 4 additions & 4 deletions internal/legacy/dockerregistry/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ import (
grafeaspb "google.golang.org/genproto/googleapis/grafeas/v1"
"gopkg.in/src-d/go-git.v4/plumbing"

"sigs.k8s.io/promo-tools/v3/internal/legacy/dockerregistry/registry"
"sigs.k8s.io/promo-tools/v3/internal/legacy/gcloud"
"sigs.k8s.io/promo-tools/v3/internal/legacy/stream"
"sigs.k8s.io/promo-tools/v3/types/image"
"sigs.k8s.io/promo-tools/v4/internal/legacy/dockerregistry/registry"
"sigs.k8s.io/promo-tools/v4/internal/legacy/gcloud"
"sigs.k8s.io/promo-tools/v4/internal/legacy/stream"
"sigs.k8s.io/promo-tools/v4/types/image"
)

// RequestResult contains information about the result of running a request
Expand Down
Loading

0 comments on commit edb09c2

Please sign in to comment.