Skip to content

Commit

Permalink
v2 pkg
Browse files Browse the repository at this point in the history
  • Loading branch information
kmulvey committed Sep 26, 2022
1 parent d13a7cc commit 5588d57
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions cmd/nsquared/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import (
"syscall"
"time"

"github.com/kmulvey/imagedup/internal/app/imagedup"
"github.com/kmulvey/imagedup/pkg/imagedup/logger"
"github.com/kmulvey/imagedup/v2/internal/app/imagedup"
"github.com/kmulvey/imagedup/v2/pkg/imagedup/logger"
"github.com/kmulvey/path"
"github.com/prometheus/client_golang/prometheus/promhttp"
log "github.com/sirupsen/logrus"
Expand Down
4 changes: 2 additions & 2 deletions cmd/uniqdirs/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import (
"syscall"
"time"

"github.com/kmulvey/imagedup/internal/app/imagedup"
"github.com/kmulvey/imagedup/pkg/imagedup/logger"
"github.com/kmulvey/imagedup/v2/internal/app/imagedup"
"github.com/kmulvey/imagedup/v2/pkg/imagedup/logger"
"github.com/kmulvey/path"
"github.com/prometheus/client_golang/prometheus/promhttp"
log "github.com/sirupsen/logrus"
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 github.com/kmulvey/imagedup
module github.com/kmulvey/imagedup/v2

go 1.18

Expand Down
2 changes: 1 addition & 1 deletion internal/app/imagedup/files.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"
"math"

"github.com/kmulvey/imagedup/pkg/imagedup/types"
"github.com/kmulvey/imagedup/v2/pkg/imagedup/types"
)

func (id *ImageDup) streamFiles(ctx context.Context, files []string) {
Expand Down
2 changes: 1 addition & 1 deletion internal/app/imagedup/hash/differ.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"time"

"github.com/kmulvey/goutils"
"github.com/kmulvey/imagedup/pkg/imagedup/types"
"github.com/kmulvey/imagedup/v2/pkg/imagedup/types"
"github.com/prometheus/client_golang/prometheus"
)

Expand Down
2 changes: 1 addition & 1 deletion internal/app/imagedup/hash/differ_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"
"testing"

"github.com/kmulvey/imagedup/pkg/imagedup/types"
"github.com/kmulvey/imagedup/v2/pkg/imagedup/types"
"github.com/stretchr/testify/assert"
)

Expand Down
4 changes: 2 additions & 2 deletions internal/app/imagedup/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"sync"

"github.com/RoaringBitmap/roaring/roaring64"
"github.com/kmulvey/imagedup/internal/app/imagedup/hash"
"github.com/kmulvey/imagedup/pkg/imagedup/types"
"github.com/kmulvey/imagedup/v2/internal/app/imagedup/hash"
"github.com/kmulvey/imagedup/v2/pkg/imagedup/types"
)

type ImageDup struct {
Expand Down
2 changes: 1 addition & 1 deletion internal/app/imagedup/stats.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"time"

"github.com/RoaringBitmap/roaring/roaring64"
"github.com/kmulvey/imagedup/internal/app/imagedup/hash"
"github.com/kmulvey/imagedup/v2/internal/app/imagedup/hash"
"github.com/prometheus/client_golang/prometheus"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/imagedup/logger/logger.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"os"
"strings"

"github.com/kmulvey/imagedup/internal/app/imagedup/hash"
"github.com/kmulvey/imagedup/v2/internal/app/imagedup/hash"
"github.com/sirupsen/logrus"
log "github.com/sirupsen/logrus"
)
Expand Down

0 comments on commit 5588d57

Please sign in to comment.