From 9927d39bef3c4be7cf0277472e69c0208d2eb251 Mon Sep 17 00:00:00 2001 From: Skip Baney Date: Mon, 19 Jun 2023 13:40:40 -0500 Subject: [PATCH] fix: switch type to interface for more flexibility --- api/client_options.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/client_options.go b/api/client_options.go index 5bd30f0..498d039 100644 --- a/api/client_options.go +++ b/api/client_options.go @@ -22,5 +22,5 @@ type ClientOptions struct { // Transport specifies the mechanism by which individual API requests are made. // Default is http.DefaultTransport. - Transport *http.Transport + Transport http.RoundTripper }