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

14 lines
295 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 RawState(in *tfplugin5.RawState) *tfprotov5.RawState {
return &tfprotov5.RawState{
JSON: in.Json,
Flatmap: in.Flatmap,
}
}