Skip to content

Commit 68c8b49

Browse files
update module name (#13)
1 parent 6fa964a commit 68c8b49

File tree

9 files changed

+16
-16
lines changed

9 files changed

+16
-16
lines changed

batch.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@ import (
66
"errors"
77
"fmt"
88
"net/http"
9-
"reduct-go/httpclient"
10-
"reduct-go/model"
119
"slices"
1210
"strconv"
1311
"strings"
1412
"sync"
1513
"time"
14+
15+
"github.com/reductstore/reduct-go/httpclient"
16+
"github.com/reductstore/reduct-go/model"
1617
)
1718

1819
type BatchType int

bucket.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import (
1414
"sync"
1515
"time"
1616

17-
"reduct-go/httpclient"
18-
"reduct-go/model"
17+
"github.com/reductstore/reduct-go/httpclient"
18+
"github.com/reductstore/reduct-go/model"
1919
)
2020

2121
type Bucket struct {

bucket_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ import (
88
"testing"
99
"time"
1010

11-
"reduct-go/model"
12-
11+
"github.com/reductstore/reduct-go/model"
1312
"github.com/stretchr/testify/assert"
1413
)
1514

client.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"fmt"
88
"time"
99

10-
"reduct-go/httpclient"
11-
"reduct-go/model"
10+
"github.com/reductstore/reduct-go/httpclient"
11+
"github.com/reductstore/reduct-go/model"
1212
)
1313

1414
var defaultClientTimeout = 60 * time.Second

client_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ import (
55
"net/http"
66
"testing"
77

8-
"reduct-go/model"
9-
8+
"github.com/reductstore/reduct-go/model"
109
"github.com/stretchr/testify/assert"
1110
)
1211

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module reduct-go
1+
module github.com/reductstore/reduct-go
22

33
go 1.24.1
44

httpclient/http.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"net/url"
1313
"time"
1414

15-
"reduct-go/model"
15+
"github.com/reductstore/reduct-go/model"
1616
)
1717

1818
const (

main_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"os"
99
"testing"
1010

11-
"reduct-go/httpclient"
12-
"reduct-go/model"
11+
"github.com/reductstore/reduct-go/httpclient"
12+
"github.com/reductstore/reduct-go/model"
1313

1414
"github.com/joho/godotenv"
1515
)

record.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ import (
44
"bytes"
55
"fmt"
66
"io"
7-
"reduct-go/httpclient"
8-
"reduct-go/model"
97
"strconv"
8+
9+
"github.com/reductstore/reduct-go/httpclient"
10+
"github.com/reductstore/reduct-go/model"
1011
)
1112

1213
type WriteOptions struct {

0 commit comments

Comments
 (0)