WithInsecureSkipTLSVerify determines if a TLS Certificate will be checked
(insecureSkipTLSVerify bool)
| 58 | |
| 59 | // WithInsecureSkipTLSVerify determines if a TLS Certificate will be checked |
| 60 | func WithInsecureSkipTLSVerify(insecureSkipTLSVerify bool) Option { |
| 61 | return func(opts *options) { |
| 62 | opts.insecureSkipTLSVerify = insecureSkipTLSVerify |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | func WithPlainHTTP(plainHTTP bool) Option { |
| 67 | return func(opts *options) { |
no outgoing calls
searching dependent graphs…