Skip to content

Commit

Permalink
Reorder imports by moving fleet pkgs to the bottom
Browse files Browse the repository at this point in the history
  • Loading branch information
jamyct committed Oct 28, 2024
1 parent dee5042 commit b7bfee7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pkg/authtoken/providers/azure/azure_msi.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ import (
"context"
"fmt"

"go.goms.io/fleet/pkg/authtoken"

"github.com/Azure/azure-sdk-for-go/sdk/azcore"
"github.com/Azure/azure-sdk-for-go/sdk/azcore/policy"
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
"k8s.io/client-go/util/retry"
"k8s.io/klog/v2"

"go.goms.io/fleet/pkg/authtoken"
)

const (
Expand Down
4 changes: 2 additions & 2 deletions pkg/authtoken/providers/secret/k8s_secret.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ import (
"fmt"
"time"

"go.goms.io/fleet/pkg/authtoken"

corev1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/types"
"k8s.io/client-go/util/retry"
"k8s.io/klog/v2"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/client"

"go.goms.io/fleet/pkg/authtoken"
)

var (
Expand Down

0 comments on commit b7bfee7

Please sign in to comment.