Skip to content

Commit bb61dbc

Browse files
committed
fix: mockgen
Signed-off-by: Alessandro Yuichi Okimoto <yuichijpn@gmail.com>
1 parent cd505a9 commit bb61dbc

730 files changed

Lines changed: 3186 additions & 3168 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

cmd/api/api.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ package main
1717
import (
1818
"log"
1919

20-
"github.com/bucketeer-io/bucketeer/pkg/api/cmd"
21-
"github.com/bucketeer-io/bucketeer/pkg/cli"
20+
"github.com/bucketeer-io/bucketeer/v2/pkg/api/cmd"
21+
"github.com/bucketeer-io/bucketeer/v2/pkg/cli"
2222
)
2323

2424
var (

cmd/batch/batch.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ package main
1717
import (
1818
"log"
1919

20-
"github.com/bucketeer-io/bucketeer/pkg/batch/cmd/server"
21-
"github.com/bucketeer-io/bucketeer/pkg/cli"
20+
"github.com/bucketeer-io/bucketeer/v2/pkg/batch/cmd/server"
21+
"github.com/bucketeer-io/bucketeer/v2/pkg/cli"
2222
)
2323

2424
var (

cmd/subscriber/subscriber.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ package main
1717
import (
1818
"log"
1919

20-
"github.com/bucketeer-io/bucketeer/pkg/cli"
21-
"github.com/bucketeer-io/bucketeer/pkg/subscriber/cmd/server"
20+
"github.com/bucketeer-io/bucketeer/v2/pkg/cli"
21+
"github.com/bucketeer-io/bucketeer/v2/pkg/subscriber/cmd/server"
2222
)
2323

2424
var (

cmd/web/web.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ package main
1717
import (
1818
"log"
1919

20-
"github.com/bucketeer-io/bucketeer/pkg/cli"
21-
"github.com/bucketeer-io/bucketeer/pkg/web/cmd/server"
20+
"github.com/bucketeer-io/bucketeer/v2/pkg/cli"
21+
"github.com/bucketeer-io/bucketeer/v2/pkg/web/cmd/server"
2222
)
2323

2424
var (

evaluation/go/clause_evaluator.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020

2121
"github.com/blang/semver"
2222

23-
featureproto "github.com/bucketeer-io/bucketeer/proto/feature"
23+
featureproto "github.com/bucketeer-io/bucketeer/v2/proto/feature"
2424
)
2525

2626
type clauseEvaluator struct {

evaluation/go/clause_evaluator_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020

2121
"github.com/stretchr/testify/assert"
2222

23-
featureproto "github.com/bucketeer-io/bucketeer/proto/feature"
23+
featureproto "github.com/bucketeer-io/bucketeer/v2/proto/feature"
2424
)
2525

2626
func TestGreaterFloat(t *testing.T) {

evaluation/go/evaluation.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ import (
2121

2222
"golang.org/x/exp/maps"
2323

24-
ftdomain "github.com/bucketeer-io/bucketeer/pkg/feature/domain"
25-
ftproto "github.com/bucketeer-io/bucketeer/proto/feature"
26-
userproto "github.com/bucketeer-io/bucketeer/proto/user"
24+
ftdomain "github.com/bucketeer-io/bucketeer/v2/pkg/feature/domain"
25+
ftproto "github.com/bucketeer-io/bucketeer/v2/proto/feature"
26+
userproto "github.com/bucketeer-io/bucketeer/v2/proto/user"
2727
)
2828

2929
const (

evaluation/go/evaluation_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ import (
2424
"github.com/stretchr/testify/require"
2525
"go.uber.org/mock/gomock"
2626

27-
featuredoman "github.com/bucketeer-io/bucketeer/pkg/feature/domain"
28-
"github.com/bucketeer-io/bucketeer/proto/feature"
29-
ftproto "github.com/bucketeer-io/bucketeer/proto/feature"
30-
userproto "github.com/bucketeer-io/bucketeer/proto/user"
27+
featuredoman "github.com/bucketeer-io/bucketeer/v2/pkg/feature/domain"
28+
"github.com/bucketeer-io/bucketeer/v2/proto/feature"
29+
ftproto "github.com/bucketeer-io/bucketeer/v2/proto/feature"
30+
userproto "github.com/bucketeer-io/bucketeer/v2/proto/user"
3131
)
3232

3333
func TestEvaluateFeature(t *testing.T) {

evaluation/go/rule_evaluator.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
package evaluation
1616

1717
import (
18-
featureproto "github.com/bucketeer-io/bucketeer/proto/feature"
19-
userproto "github.com/bucketeer-io/bucketeer/proto/user"
18+
featureproto "github.com/bucketeer-io/bucketeer/v2/proto/feature"
19+
userproto "github.com/bucketeer-io/bucketeer/v2/proto/user"
2020
)
2121

2222
type ruleEvaluator struct {

evaluation/go/rule_evaluator_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ import (
2121

2222
"github.com/stretchr/testify/assert"
2323

24-
ftproto "github.com/bucketeer-io/bucketeer/proto/feature"
25-
userproto "github.com/bucketeer-io/bucketeer/proto/user"
24+
ftproto "github.com/bucketeer-io/bucketeer/v2/proto/feature"
25+
userproto "github.com/bucketeer-io/bucketeer/v2/proto/user"
2626
)
2727

2828
func TestRuleEvaluator(t *testing.T) {

0 commit comments

Comments
 (0)