Skip to content

Commit dc00e3d

Browse files
authored
Update go module to use v2 (#386)
1 parent 96e662d commit dc00e3d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/nginxinc/nginx-plus-go-client
1+
module github.com/nginxinc/nginx-plus-go-client/v2
22

33
go 1.22.6
44

tests/client_no_stream_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"context"
55
"testing"
66

7-
"github.com/nginxinc/nginx-plus-go-client/client"
8-
"github.com/nginxinc/nginx-plus-go-client/tests/helpers"
7+
"github.com/nginxinc/nginx-plus-go-client/v2/client"
8+
"github.com/nginxinc/nginx-plus-go-client/v2/tests/helpers"
99
)
1010

1111
// TestStatsNoStream tests the peculiar behavior of getting Stream-related

tests/client_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"testing"
88
"time"
99

10-
"github.com/nginxinc/nginx-plus-go-client/client"
11-
"github.com/nginxinc/nginx-plus-go-client/tests/helpers"
10+
"github.com/nginxinc/nginx-plus-go-client/v2/client"
11+
"github.com/nginxinc/nginx-plus-go-client/v2/tests/helpers"
1212
)
1313

1414
const (

0 commit comments

Comments
 (0)