terraform-provider-google/vendor/github.com/hashicorp/terraform/terraform/user_agent.go
Paddy Carver 709d537a1c Update schema to 0.11.7.
Update our helper/schema to v0.11.7, and update all its dependencies to
their latest, as well.
2018-06-07 15:38:10 -07:00

14 lines
277 B
Go

package terraform
import (
"github.com/hashicorp/terraform/httpclient"
)
// Generate a UserAgent string
//
// Deprecated: Use httpclient.UserAgentString if you are setting your
// own User-Agent header.
func UserAgentString() string {
return httpclient.UserAgentString()
}