Skip to content

Commit ca8d1f3

Browse files
committed
update modules to v2
Signed-off-by: Valery Piashchynski <[email protected]>
1 parent 238f1b1 commit ca8d1f3

File tree

5 files changed

+4
-7
lines changed

5 files changed

+4
-7
lines changed

go.mod

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
module github.com/roadrunner-server/api
1+
module github.com/roadrunner-server/api/v2
22

33
go 1.17
44

55
require (
66
github.com/goccy/go-json v0.9.0
7-
github.com/hashicorp/go-version v1.4.0
87
github.com/prometheus/client_golang v1.11.0
98
github.com/spiral/roadrunner/v2 v2.7.0-beta.1
109
github.com/stretchr/testify v1.7.0

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,6 @@ github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I=
131131
github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
132132
github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg=
133133
github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk=
134-
github.com/hashicorp/go-version v1.4.0 h1:aAQzgqIrRKRa7w75CKpbBxYsmUoPjzVm1W59ca1L0J4=
135-
github.com/hashicorp/go-version v1.4.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA=
136134
github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
137135
github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
138136
github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc=

plugins/v2/informer/interface.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package informer
33
import (
44
"context"
55

6-
"github.com/roadrunner-server/api/plugins/v2/jobs"
6+
"github.com/roadrunner-server/api/v2/plugins/v2/jobs"
77
"github.com/spiral/roadrunner/v2/state/process"
88
)
99

plugins/v2/jobs/interface.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package jobs
33
import (
44
"context"
55

6-
"github.com/roadrunner-server/api/plugins/v2/jobs/pipeline"
6+
"github.com/roadrunner-server/api/v2/plugins/v2/jobs/pipeline"
77
priorityqueue "github.com/spiral/roadrunner/v2/priority_queue"
88
)
99

plugins/v2/kv/interface.go

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

3-
import kvv1 "github.com/roadrunner-server/api/proto/kv/v1beta"
3+
import kvv1 "github.com/roadrunner-server/api/v2/proto/kv/v1beta"
44

55
// Storage represents single abstract storage.
66
type Storage interface {

0 commit comments

Comments
 (0)