mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-08 15:13:56 -06:00
0ee4e2b46c
This package rename just makes one consistent name across the docs, packages, and dirs. cc/ @soniah
13 lines
206 B
Go
13 lines
206 B
Go
package main
|
|
|
|
import (
|
|
"github.com/hashicorp/terraform/builtin/providers/dme"
|
|
"github.com/hashicorp/terraform/plugin"
|
|
)
|
|
|
|
func main() {
|
|
plugin.Serve(&plugin.ServeOpts{
|
|
ProviderFunc: dme.Provider,
|
|
})
|
|
}
|