mirror of
https://github.com/hashicorp/terraform.git
synced 2026-05-17 20:09:57 -04:00
6 lines
142 B
Go
6 lines
142 B
Go
package schema
|
|
|
|
// Equal is an interface that checks for deep equality between two objects.
|
|
type Equal interface {
|
|
Equal(interface{}) bool
|
|
}
|