Skip to content

Commit

Permalink
chore: reorder imports so that our own code is in its own section
Browse files Browse the repository at this point in the history
  • Loading branch information
sorccu committed Dec 6, 2024
1 parent 1c19375 commit 7e915e3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
5 changes: 3 additions & 2 deletions internal/provider/datasources/static_ips_data_source_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ import (
"regexp"
"testing"

"github.com/checkly/terraform-provider-checkly/internal/provider"
"github.com/checkly/terraform-provider-checkly/internal/provider/globalregistry"
"github.com/hashicorp/terraform-plugin-framework/providerserver"
"github.com/hashicorp/terraform-plugin-go/tfprotov6"
"github.com/hashicorp/terraform-plugin-testing/helper/resource"

"github.com/checkly/terraform-provider-checkly/internal/provider"
"github.com/checkly/terraform-provider-checkly/internal/provider/globalregistry"
)

func protoV6ProviderFactories() map[string]func() (tfprotov6.ProviderServer, error) {
Expand Down
5 changes: 3 additions & 2 deletions internal/provider/provider_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ import (
"regexp"
"testing"

"github.com/checkly/terraform-provider-checkly/internal/provider"
"github.com/checkly/terraform-provider-checkly/internal/provider/globalregistry"
"github.com/hashicorp/terraform-plugin-framework/providerserver"
"github.com/hashicorp/terraform-plugin-go/tfprotov6"
"github.com/hashicorp/terraform-plugin-testing/helper/resource"

"github.com/checkly/terraform-provider-checkly/internal/provider"
"github.com/checkly/terraform-provider-checkly/internal/provider/globalregistry"
)

func protoV6ProviderFactories(options ...provider.Option) map[string]func() (tfprotov6.ProviderServer, error) {
Expand Down
5 changes: 3 additions & 2 deletions internal/provider/resources/shared_test.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
package resources_test

import (
"github.com/checkly/terraform-provider-checkly/internal/provider"
"github.com/checkly/terraform-provider-checkly/internal/provider/globalregistry"
"github.com/hashicorp/terraform-plugin-framework/providerserver"
"github.com/hashicorp/terraform-plugin-go/tfprotov6"

"github.com/checkly/terraform-provider-checkly/internal/provider"
"github.com/checkly/terraform-provider-checkly/internal/provider/globalregistry"
)

func protoV6ProviderFactories() map[string]func() (tfprotov6.ProviderServer, error) {
Expand Down

0 comments on commit 7e915e3

Please sign in to comment.