mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 01:41:48 -06:00
63dcdbe948
The new helper/plugin package contains the grpc servers for handling the new plugin protocol The GRPCProviderServer and GRPCProvisionerServer handle the grpc plugin protocol, and convert the requests to the legacy schema.Provider and schema.Provisioner methods.
7 lines
289 B
Go
7 lines
289 B
Go
// Package plugin contains types and functions to help Terraform plugins
|
|
// implement the plugin rpc interface.
|
|
// The primary Provider type will be responsible for converting from the grpc
|
|
// wire protocol to the types and methods known to the provider
|
|
// implementations.
|
|
package plugin
|