File tree 1 file changed +3
-5
lines changed
1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- `main.go` is the entrypoint of the Terraform provider. See
3
- [`corefunc`](./corefunc) for the Go library code.
2
+ See "corefunc" package for the Go library code.
4
3
*/
5
4
package main
6
5
9
8
"flag"
10
9
"log"
11
10
12
- "github.com/northwood-labs/terraform-provider-corefunc/corefunc"
13
-
14
11
"github.com/hashicorp/terraform-plugin-framework/providerserver"
12
+ "github.com/northwood-labs/terraform-provider-corefunc/corefuncprovider"
15
13
)
16
14
17
15
// Provider documentation generation.
@@ -26,7 +24,7 @@ func main() {
26
24
// deep version?
27
25
flag .Parse ()
28
26
29
- err := providerserver .Serve (context .Background (), corefunc .New , providerserver.ServeOpts {
27
+ err := providerserver .Serve (context .Background (), corefuncprovider .New , providerserver.ServeOpts {
30
28
Address : "registry.terraform.io/northwood-labs/corefunc" ,
31
29
Debug : debug ,
32
30
})
You can’t perform that action at this time.
0 commit comments