mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-26 17:01:04 -06:00
44bc7519a6
This doesn't actually work yet, but it builds and then panics in a pretty satisfying way.
15 lines
243 B
Go
15 lines
243 B
Go
package plugin
|
|
|
|
import (
|
|
"github.com/hashicorp/go-plugin"
|
|
)
|
|
|
|
// See serve.go for serving plugins
|
|
|
|
var VersionedPlugins = map[int]plugin.PluginSet{
|
|
5: {
|
|
"provider": &GRPCProviderPlugin{},
|
|
"provisioner": &GRPCProvisionerPlugin{},
|
|
},
|
|
}
|