Skip to content

Commit 9b0bb01

Browse files
committed
fix imports, doh.
1 parent 245bb6d commit 9b0bb01

File tree

13 files changed

+23
-23
lines changed

13 files changed

+23
-23
lines changed

attic/bposts.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
package attic
1616

1717
import (
18-
"github.com/scott-cotton/dupi/attic/ibloom"
18+
"github.com/go-air/dupi/attic/ibloom"
1919
)
2020

2121
type bposts struct {

attic/bposts_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ import (
2020
"testing"
2121
"unsafe"
2222

23-
"github.com/scott-cotton/dupi/attic/ibloom"
24-
"github.com/scott-cotton/dupi/attic/trigram"
23+
"github.com/go-air/dupi/attic/ibloom"
24+
"github.com/go-air/dupi/attic/trigram"
2525
)
2626

2727
func TestTridat(t *testing.T) {

attic/trigram/t.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ package trigram
1818
import (
1919
"fmt"
2020

21-
"github.com/scott-cotton/dupi/token"
21+
"github.com/go-air/dupi/token"
2222
)
2323

2424
type T uint16

attic/trigram/t_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"fmt"
1919
"testing"
2020

21-
"github.com/scott-cotton/dupi/token"
21+
"github.com/go-air/dupi/token"
2222
)
2323

2424
func TestTrigram(t *testing.T) {

cmd/dupenron/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ import (
2525

2626
_ "net/http/pprof"
2727

28+
"github.com/go-air/dupi"
2829
"github.com/google/gops/agent"
29-
"github.com/scott-cotton/dupi"
3030
)
3131

3232
var N = flag.Int("n", 16, "buckets")

cmd/dupi/extract.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"io"
2222
"os"
2323

24-
"github.com/scott-cotton/dupi"
24+
"github.com/go-air/dupi"
2525
)
2626

2727
type extractCmd struct {

cmd/dupi/index.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
"path/filepath"
2424
"strings"
2525

26-
"github.com/scott-cotton/dupi"
26+
"github.com/go-air/dupi"
2727
)
2828

2929
type indexCmd struct {

config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ import (
2121
"os"
2222
"path/filepath"
2323

24-
"github.com/scott-cotton/dupi/blotter"
25-
"github.com/scott-cotton/dupi/token"
24+
"github.com/go-air/dupi/blotter"
25+
"github.com/go-air/dupi/token"
2626
)
2727

2828
type Config struct {

index.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ import (
1919
"log"
2020
"os"
2121

22-
"github.com/scott-cotton/dupi/dmd"
23-
"github.com/scott-cotton/dupi/internal/shard"
24-
"github.com/scott-cotton/dupi/lock"
22+
"github.com/go-air/dupi/dmd"
23+
"github.com/go-air/dupi/internal/shard"
24+
"github.com/go-air/dupi/lock"
2525
)
2626

2727
type Index struct {

indexer.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ import (
1818
"log"
1919
"os"
2020

21-
"github.com/scott-cotton/dupi/dmd"
22-
"github.com/scott-cotton/dupi/internal/shard"
23-
"github.com/scott-cotton/dupi/lock"
24-
"github.com/scott-cotton/dupi/post"
25-
"github.com/scott-cotton/dupi/token"
21+
"github.com/go-air/dupi/dmd"
22+
"github.com/go-air/dupi/internal/shard"
23+
"github.com/go-air/dupi/lock"
24+
"github.com/go-air/dupi/post"
25+
"github.com/go-air/dupi/token"
2626
)
2727

2828
// Indexer is a struct for duplicate indexing.

0 commit comments

Comments
 (0)