mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-04-10 21:02:01 -04:00
13 lines
350 B
Go
13 lines
350 B
Go
// Copyright (c) The OpenTofu Authors
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
// Copyright (c) 2023 HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package tofu
|
|
|
|
// graphNodeExpandsInstances is implemented by nodes that causes instances to
|
|
// be registered in the instances.Expander.
|
|
type graphNodeExpandsInstances interface {
|
|
expandsInstances()
|
|
}
|