mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-16 19:52:49 -06:00
cdee8c70ec
With this refactor the DNSimple provider is updated to use the schema.Provider approach released with TF 0.2.
13 lines
216 B
Go
13 lines
216 B
Go
package main
|
|
|
|
import (
|
|
"github.com/hashicorp/terraform/builtin/providers/dnsimple"
|
|
"github.com/hashicorp/terraform/plugin"
|
|
)
|
|
|
|
func main() {
|
|
plugin.Serve(&plugin.ServeOpts{
|
|
ProviderFunc: dnsimple.Provider,
|
|
})
|
|
}
|