mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-26 17:01:04 -06:00
120bb0a66c
This is a relatively small change meant to lay the foundation for future enhancements to providers' address.
8 lines
213 B
Go
8 lines
213 B
Go
package addrs
|
|
|
|
// ProviderType encapsulates a single provider type. In the future this will be
|
|
// extended to include additional fields including Namespace and SourceHost
|
|
type ProviderType struct {
|
|
Name string
|
|
}
|