/
githubmirror
/
terraform
Обзор
Документация
Войти
/
githubmirror
/
terraform
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
internal/httpclient/client.go
21 строка
468 B
Radek Simko
make copyrightfix
17 фев 2026, 16:56
17 фев 2026, 16:56
0fe906f
Код
Авторство
О чём код?
// Copyright IBM Corp. 2014, 2026 // SPDX-License-Identifier: BUSL-1.1 package httpclient import ( "net/http" cleanhttp "github.com/hashicorp/go-cleanhttp" ) // New returns the DefaultPooledClient from the cleanhttp // package that will also send a Terraform User-Agent string. func New() *http.Client { cli := cleanhttp.DefaultPooledClient() cli.Transport = &userAgentRoundTripper{ userAgent: UserAgentString(), inner: cli.Transport, } return cli }