mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-23 11:44:26 -05:00
* prep for processing the structured run output * undo unwanted change to a json key * Add skeleton functions and API for refactored renderer * goimports * Fix documentation of the RenderOpts struct * Add README explaining implementation details for renderer and plans for future expansion * Update internal/command/jsonformat/README.md Co-authored-by: Alisdair McDiarmid <alisdair@users.noreply.github.com> * address comments Co-authored-by: Alisdair McDiarmid <alisdair@users.noreply.github.com>
8 lines
176 B
Go
8 lines
176 B
Go
package differ
|
|
|
|
import "github.com/hashicorp/terraform/internal/command/jsonformat/change"
|
|
|
|
func (v Value) ComputeChangeForOutput() change.Change {
|
|
panic("not implemented")
|
|
}
|