mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 01:41:48 -06:00
a49e7eee8b
This is a partial copy of the terraform package to preserve the legacy types for internal use.
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()
|
|
}
|