mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-21 22:22:58 -06:00
e4edce22ca
moving helper/schema into the ineternal/legacy tree
7 lines
142 B
Go
7 lines
142 B
Go
package schema
|
|
|
|
// Equal is an interface that checks for deep equality between two objects.
|
|
type Equal interface {
|
|
Equal(interface{}) bool
|
|
}
|