mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-11 13:00:14 -04:00
10 lines
187 B
Go
10 lines
187 B
Go
package providers
|
|
|
|
import "github.com/opentofu/opentofu/internal/addrs"
|
|
|
|
func NewMockSchemaCache() *schemaCache {
|
|
return &schemaCache{
|
|
m: make(map[addrs.Provider]ProviderSchema),
|
|
}
|
|
}
|