mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-20 10:19:27 -05:00
13 lines
489 B
Go
13 lines
489 B
Go
package differ
|
|
|
|
import (
|
|
"github.com/hashicorp/terraform/internal/command/jsonformat/computed"
|
|
"github.com/hashicorp/terraform/internal/command/jsonformat/structured"
|
|
)
|
|
|
|
// asDiff is a helper function to abstract away some simple and common
|
|
// functionality when converting a renderer into a concrete diff.
|
|
func asDiff(change structured.Change, renderer computed.DiffRenderer) computed.Diff {
|
|
return computed.NewDiff(renderer, change.CalculateAction(), change.ReplacePaths.Matches())
|
|
}
|