Skip to content

Commit

Permalink
go imports order
Browse files Browse the repository at this point in the history
  • Loading branch information
mproffitt committed Nov 12, 2023
1 parent 2b0435d commit beff3a4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion fn.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ import (
"github.com/crossplane/crossplane-runtime/pkg/errors"
fnv1beta1 "github.com/crossplane/function-sdk-go/proto/v1beta1"
"github.com/crossplane/function-sdk-go/response"
"github.com/giantswarm/crossplane-fn-describe-nodegroups/pkg/input/v1beta1"
"github.com/giantswarm/xfnlib/pkg/composite"

"github.com/giantswarm/crossplane-fn-describe-nodegroups/pkg/input/v1beta1"
)

const composedName = "crossplane-fn-describe-nodegroups"
Expand Down
1 change: 1 addition & 0 deletions fn_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import (
"google.golang.org/protobuf/types/known/durationpb"

"github.com/crossplane/crossplane-runtime/pkg/logging"

"github.com/giantswarm/crossplane-fn-describe-nodegroups/pkg/input/v1beta1"

fnv1beta1 "github.com/crossplane/function-sdk-go/proto/v1beta1"
Expand Down
4 changes: 3 additions & 1 deletion types.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ package main
import (
"github.com/crossplane/crossplane-runtime/pkg/logging"
fnv1beta1 "github.com/crossplane/function-sdk-go/proto/v1beta1"
xfc "github.com/giantswarm/crossplane-fn-describe-nodegroups/pkg/composite/v1beta1"

"github.com/giantswarm/xfnlib/pkg/composite"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

xfc "github.com/giantswarm/crossplane-fn-describe-nodegroups/pkg/composite/v1beta1"
)

// Policy Policies for referencing.
Expand Down

0 comments on commit beff3a4

Please sign in to comment.