WithHost allows setting the host header.
(host string)
| 565 | |
| 566 | // WithHost allows setting the host header. |
| 567 | func WithHost(host string) HTTPClientOption { |
| 568 | return httpClientOptionFunc(func(opts *httpClientOptions) { |
| 569 | opts.host = host |
| 570 | }) |
| 571 | } |
| 572 | |
| 573 | type secretManagerOption struct { |
| 574 | secretManager SecretManager |
searching dependent graphs…