terraform/terraform/version.go

11 lines
192 B
Go

package terraform
import (
"github.com/hashicorp/terraform/version"
)
// TODO: update providers to use the version package directly
func VersionString() string {
return version.String()
}