File tree Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -2,10 +2,10 @@ package main
22
33import (
44 "context"
5- "docker-wrapper/pkg/client"
6- "docker-wrapper/pkg/client/auth"
75 "github.com/distribution/reference"
86 client2 "github.com/docker/docker/client"
7+ "github.com/silenium-dev/docker-wrapper/pkg/client"
8+ "github.com/silenium-dev/docker-wrapper/pkg/client/auth"
99 "time"
1010)
1111
Original file line number Diff line number Diff line change 1- module docker-wrapper
1+ module github.com/silenium-dev/ docker-wrapper
22
33go 1.24
44
55require (
66 github.com/containerd/errdefs v1.0.0
7+ github.com/cpuguy83/dockercfg v0.3.2
78 github.com/distribution/reference v0.6.0
89 github.com/docker/docker v25.0.10+incompatible
910 github.com/docker/go-units v0.5.0
@@ -13,7 +14,6 @@ require (
1314require (
1415 github.com/Microsoft/go-winio v0.6.2 // indirect
1516 github.com/containerd/log v0.1.0 // indirect
16- github.com/cpuguy83/dockercfg v0.3.2 // indirect
1717 github.com/docker/go-connections v0.5.0 // indirect
1818 github.com/felixge/httpsnoop v1.0.4 // indirect
1919 github.com/go-logr/logr v1.4.3 // indirect
Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ package client
22
33import (
44 "context"
5- "docker-wrapper/pkg/client/pull"
6- "docker-wrapper/pkg/client/pull/events"
75 "github.com/distribution/reference"
86 "github.com/docker/docker/api/types"
97 "github.com/docker/docker/api/types/registry"
8+ "github.com/silenium-dev/docker-wrapper/pkg/client/pull"
9+ "github.com/silenium-dev/docker-wrapper/pkg/client/pull/events"
1010)
1111
1212func (c * Client ) Pull (ctx context.Context , ref reference.Named ) (chan events.PullEvent , error ) {
Original file line number Diff line number Diff line change 11package events
22
33import (
4- "docker-wrapper/pkg/client/pull/base"
54 "fmt"
65 "github.com/opencontainers/go-digest"
6+ "github.com/silenium-dev/docker-wrapper/pkg/client/pull/base"
77 "strings"
88 "time"
99)
Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ package pull
33import (
44 "bufio"
55 "context"
6- "docker-wrapper/pkg/client/pull/base"
7- "docker-wrapper/pkg/client/pull/events"
86 "encoding/json"
7+ "github.com/silenium-dev/docker-wrapper/pkg/client/pull/base"
8+ "github.com/silenium-dev/docker-wrapper/pkg/client/pull/events"
99 "io"
1010 "log"
1111)
You can’t perform that action at this time.
0 commit comments