Files
Dalton Hubble dbe684869d Rename util package to internal to prevent library use
* It's conventional to implement Terraform providers within an
internal package, since they're not intended to be consumed or
relied upon as Go libraries
2024-06-22 10:11:28 -07:00

14 lines
226 B
Go

package main
import (
"github.com/hashicorp/terraform-plugin-sdk/v2/plugin"
"github.com/poseidon/terraform-provider-util/internal"
)
func main() {
plugin.Serve(&plugin.ServeOpts{
ProviderFunc: internal.Provider,
})
}