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

14 lines
295 B
Go
Raw Normal View History

package fromproto
import (
"github.com/hashicorp/terraform-plugin-go/tfprotov6"
"github.com/hashicorp/terraform-plugin-go/tfprotov6/internal/tfplugin6"
)
func RawState(in *tfplugin6.RawState) *tfprotov6.RawState {
return &tfprotov6.RawState{
JSON: in.Json,
Flatmap: in.Flatmap,
}
}