Skip to content

Commit

Permalink
chore: move evaluation pkg to go directory (#1238)
Browse files Browse the repository at this point in the history
Signed-off-by: Alessandro Yuichi Okimoto <[email protected]>
  • Loading branch information
cre8ivejp authored Sep 17, 2024
1 parent b23df7c commit 05363ef
Show file tree
Hide file tree
Showing 19 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ local-deps:

.PHONY: lint
lint:
golangci-lint run --timeout 3m0s ./cmd/... ./evaluation/... ./pkg/... ./hack/... ./test/...
golangci-lint run --timeout 3m0s ./cmd/... ./evaluation/go/... ./pkg/... ./hack/... ./test/...

.PHONY: gofmt
gofmt:
Expand Down Expand Up @@ -167,7 +167,7 @@ build-go-embed: build-web-console $(GO_APP_BUILD_TARGETS) clean-web-console
# Make sure bucketeer-httpstan is already running. If not, run "make start-httpstan".
.PHONY: test-go
test-go:
TZ=UTC CGO_ENABLED=0 go test -v ./pkg/... ./evaluation/...
TZ=UTC CGO_ENABLED=0 go test -v ./pkg/... ./evaluation/go/...

.PHONY: start-httpstan
start-httpstan:
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion pkg/api/api/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import (
"google.golang.org/protobuf/encoding/protojson"
"google.golang.org/protobuf/types/known/anypb"

evaluation "github.com/bucketeer-io/bucketeer/evaluation"
evaluation "github.com/bucketeer-io/bucketeer/evaluation/go"
accountclient "github.com/bucketeer-io/bucketeer/pkg/account/client"
"github.com/bucketeer-io/bucketeer/pkg/cache"
cachev3 "github.com/bucketeer-io/bucketeer/pkg/cache/v3"
Expand Down
2 changes: 1 addition & 1 deletion pkg/api/api/api_grpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
"google.golang.org/grpc/status"
"google.golang.org/protobuf/types/known/wrapperspb"

evaluation "github.com/bucketeer-io/bucketeer/evaluation"
evaluation "github.com/bucketeer-io/bucketeer/evaluation/go"
accountclient "github.com/bucketeer-io/bucketeer/pkg/account/client"
"github.com/bucketeer-io/bucketeer/pkg/cache"
cachev3 "github.com/bucketeer-io/bucketeer/pkg/cache/v3"
Expand Down
2 changes: 1 addition & 1 deletion pkg/api/api/api_grpc_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"testing"
"time"

evaluation "github.com/bucketeer-io/bucketeer/evaluation"
evaluation "github.com/bucketeer-io/bucketeer/evaluation/go"
environmentproto "github.com/bucketeer-io/bucketeer/proto/environment"
"github.com/bucketeer-io/bucketeer/proto/feature"

Expand Down
2 changes: 1 addition & 1 deletion pkg/api/api/api_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
"testing"
"time"

evaluation "github.com/bucketeer-io/bucketeer/evaluation"
evaluation "github.com/bucketeer-io/bucketeer/evaluation/go"
environmentproto "github.com/bucketeer-io/bucketeer/proto/environment"

"github.com/stretchr/testify/assert"
Expand Down
2 changes: 1 addition & 1 deletion pkg/batch/jobs/cacher/featureflagcacher.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (

"go.uber.org/zap"

evaluation "github.com/bucketeer-io/bucketeer/evaluation"
evaluation "github.com/bucketeer-io/bucketeer/evaluation/go"
"github.com/bucketeer-io/bucketeer/pkg/batch/jobs"
"github.com/bucketeer-io/bucketeer/pkg/cache"
cachev3 "github.com/bucketeer-io/bucketeer/pkg/cache/v3"
Expand Down
2 changes: 1 addition & 1 deletion pkg/feature/api/feature.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"

evaluation "github.com/bucketeer-io/bucketeer/evaluation"
evaluation "github.com/bucketeer-io/bucketeer/evaluation/go"
autoopsdomain "github.com/bucketeer-io/bucketeer/pkg/autoops/domain"
v2ao "github.com/bucketeer-io/bucketeer/pkg/autoops/storage/v2"
domainevent "github.com/bucketeer-io/bucketeer/pkg/domainevent/domain"
Expand Down

0 comments on commit 05363ef

Please sign in to comment.