mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-26 08:51:02 -06:00
14 lines
277 B
Go
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()
|
|
}
|