Skip to content

Commit 2cb4aed

Browse files
committed
chore: change module path
1 parent 4d74466 commit 2cb4aed

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

examples/pull/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ package main
22

33
import (
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

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
module docker-wrapper
1+
module github.com/silenium-dev/docker-wrapper
22

33
go 1.24
44

55
require (
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 (
1314
require (
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

pkg/client/pull.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ package client
22

33
import (
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

1212
func (c *Client) Pull(ctx context.Context, ref reference.Named) (chan events.PullEvent, error) {

pkg/client/pull/events/event.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package events
22

33
import (
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
)

pkg/client/pull/reader.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package pull
33
import (
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
)

0 commit comments

Comments
 (0)