mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 18:01:01 -06:00
87948b68fc
/cc @svanharmelen
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
|
|
}
|