github.com/terramate-io/tf@v0.0.0-20230830114523-fce866b4dfcd/legacy/helper/schema/equal.go (about) 1 // Copyright (c) HashiCorp, Inc. 2 // SPDX-License-Identifier: MPL-2.0 3 4 package schema 5 6 // Equal is an interface that checks for deep equality between two objects. 7 type Equal interface { 8 Equal(interface{}) bool 9 }