Skip to content

Commit

Permalink
Renames for consistency
Browse files Browse the repository at this point in the history
Signed-off-by: jose.vazquez <jose.vazquez@mongodb.com>
  • Loading branch information
josvazg committed Jun 3, 2024
1 parent a1ba07a commit 0bf1a2e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"go.uber.org/zap"
"k8s.io/apimachinery/pkg/types"

"github.com/mongodb/mongodb-atlas-kubernetes/v2/internal/translayer"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/internal/translation"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/pkg/controller/atlas"
)

Expand All @@ -22,7 +22,7 @@ type ProductionAtlasAudit struct {
}

func NewService(ctx context.Context, provider atlas.Provider, secretRef *types.NamespacedName, log *zap.SugaredLogger) (*ProductionAtlasAudit, error) {
client, err := translayer.NewVersionedClient(ctx, provider, secretRef, log)
client, err := translation.NewVersionedClient(ctx, provider, secretRef, log)
if err != nil {
return nil, err
}
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package translayer
package translation

import (
"context"
Expand Down
2 changes: 1 addition & 1 deletion test/contract/auditing/auditing_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"testing"
"time"

"github.com/mongodb/mongodb-atlas-kubernetes/v2/internal/translayer/auditing"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/internal/translation/auditing"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/test/helper/control"
"github.com/mongodb/mongodb-atlas-kubernetes/v2/test/helper/launcher"

Expand Down

0 comments on commit 0bf1a2e

Please sign in to comment.