Skip to content

Commit 4907adf

Browse files
committed
Making import order right according to the rules
1 parent 5b54fcf commit 4907adf

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

internal/provider/function_resource.go

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
package provider
22

33
import (
4-
"context"
5-
"fmt"
6-
"net/http"
7-
"regexp"
8-
9-
"github.com/hashicorp/terraform-plugin-framework-validators/stringvalidator"
10-
"github.com/hashicorp/terraform-plugin-framework/path"
11-
"github.com/hashicorp/terraform-plugin-framework/resource"
12-
"github.com/hashicorp/terraform-plugin-framework/resource/schema"
13-
"github.com/hashicorp/terraform-plugin-framework/resource/schema/planmodifier"
14-
"github.com/hashicorp/terraform-plugin-framework/resource/schema/stringplanmodifier"
15-
"github.com/hashicorp/terraform-plugin-framework/schema/validator"
16-
tftypes "github.com/hashicorp/terraform-plugin-framework/types"
17-
18-
"github.com/segmentio/public-api-sdk-go/api"
19-
"github.com/segmentio/terraform-provider-segment/internal/provider/docs"
20-
"github.com/segmentio/terraform-provider-segment/internal/provider/models"
4+
"context"
5+
"fmt"
6+
"net/http"
7+
"regexp"
8+
9+
"github.com/hashicorp/terraform-plugin-framework-validators/stringvalidator"
10+
"github.com/hashicorp/terraform-plugin-framework/path"
11+
"github.com/hashicorp/terraform-plugin-framework/resource"
12+
"github.com/hashicorp/terraform-plugin-framework/resource/schema"
13+
"github.com/hashicorp/terraform-plugin-framework/resource/schema/planmodifier"
14+
"github.com/hashicorp/terraform-plugin-framework/resource/schema/stringplanmodifier"
15+
"github.com/hashicorp/terraform-plugin-framework/schema/validator"
16+
tftypes "github.com/hashicorp/terraform-plugin-framework/types"
17+
18+
"github.com/segmentio/public-api-sdk-go/api"
19+
"github.com/segmentio/terraform-provider-segment/internal/provider/docs"
20+
"github.com/segmentio/terraform-provider-segment/internal/provider/models"
2121
)
2222

2323
var (
24-
_ resource.Resource = &functionResource{}
25-
_ resource.ResourceWithConfigure = &functionResource{}
26-
_ resource.ResourceWithImportState = &functionResource{}
24+
_ resource.Resource = &functionResource{}
25+
_ resource.ResourceWithConfigure = &functionResource{}
26+
_ resource.ResourceWithImportState = &functionResource{}
2727
)
2828

2929
func NewFunctionResource() resource.Resource {

0 commit comments

Comments
 (0)