diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-04-15 16:03:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-15 16:03:10 -0400 |
commit | 373f15f617db6731c58776c1766a4cf2c74b22b9 (patch) | |
tree | 660337b5964abeb429c8b9bcc207e2097aa1787b /pkg | |
parent | f7ab6b85547aee8a744176e90272b3740307cccb (diff) | |
parent | 501b4751a38729c601be9193580b8886f66e55fa (diff) | |
download | podman-373f15f617db6731c58776c1766a4cf2c74b22b9.tar.gz podman-373f15f617db6731c58776c1766a4cf2c74b22b9.tar.bz2 podman-373f15f617db6731c58776c1766a4cf2c74b22b9.zip |
Merge pull request #10010 from lsm5/GO111MODULE-OFF-fix-build
fix build with with GO111MODULE=off
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/domain/entities/types/auth.go | 3 | ||||
-rw-r--r-- | pkg/domain/entities/types/types.go | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/pkg/domain/entities/types/auth.go b/pkg/domain/entities/types/auth.go index ddf15bb18..7f2480173 100644 --- a/pkg/domain/entities/types/auth.go +++ b/pkg/domain/entities/types/auth.go @@ -1,4 +1,5 @@ -package types // import "github.com/docker/docker/api/types" +// copied from github.com/docker/docker/api/types +package types // AuthConfig contains authorization information for connecting to a Registry type AuthConfig struct { diff --git a/pkg/domain/entities/types/types.go b/pkg/domain/entities/types/types.go index 77834c0cb..7dc785078 100644 --- a/pkg/domain/entities/types/types.go +++ b/pkg/domain/entities/types/types.go @@ -1,4 +1,5 @@ -package types // import "github.com/docker/docker/api/types" +// copied from github.com/docker/docker/api/types +package types // ComponentVersion describes the version information for a specific component. type ComponentVersion struct { |