mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-26 16:36:26 -06:00
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
|
||
|
}
|