(pass bool)
| 79 | } |
| 80 | |
| 81 | func WithPassCredentialsAll(pass bool) Option { |
| 82 | return func(opts *getterOptions) { |
| 83 | opts.passCredentialsAll = pass |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | // WithUserAgent sets the request's User-Agent header to use the provided agent name. |
| 88 | func WithUserAgent(userAgent string) Option { |
no outgoing calls
searching dependent graphs…