terraform-provider-gitea/vendor/github.com/hashicorp/terraform-plugin-go/tfprotov5/internal/fromproto/types.go

14 lines
311 B
Go
Raw Normal View History

package fromproto
import (
"github.com/hashicorp/terraform-plugin-go/tfprotov5"
"github.com/hashicorp/terraform-plugin-go/tfprotov5/internal/tfplugin5"
)
func DynamicValue(in *tfplugin5.DynamicValue) *tfprotov5.DynamicValue {
return &tfprotov5.DynamicValue{
MsgPack: in.Msgpack,
JSON: in.Json,
}
}