8 lines
156 B
Go
8 lines
156 B
Go
|
package terraform
|
||
|
|
||
|
import tfproviders "github.com/hashicorp/terraform/providers"
|
||
|
|
||
|
type SchemaSupplier interface {
|
||
|
Schema() map[string]tfproviders.Schema
|
||
|
}
|