mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 01:41:48 -06:00
11 lines
207 B
Go
11 lines
207 B
Go
|
package terraform
|
||
|
|
||
|
import (
|
||
|
"github.com/hashicorp/terraform/version"
|
||
|
)
|
||
|
|
||
|
// Deprecated: Providers should use schema.Provider.TerraformVersion instead
|
||
|
func VersionString() string {
|
||
|
return version.String()
|
||
|
}
|