mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-07 10:01:27 -05: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
|
|
}
|