mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
11 lines
269 B
Go
11 lines
269 B
Go
|
package differ
|
||
|
|
||
|
import (
|
||
|
"github.com/hashicorp/terraform/internal/command/jsonformat/change"
|
||
|
"github.com/hashicorp/terraform/internal/command/jsonprovider"
|
||
|
)
|
||
|
|
||
|
func (v Value) ComputeChangeForBlock(block *jsonprovider.Block) change.Change {
|
||
|
panic("not implemented")
|
||
|
}
|