From 955953b519fd053d7052a56e83511c74e1afaf21 Mon Sep 17 00:00:00 2001 From: Vasiliy Tolstov Date: Sat, 16 Apr 2022 16:36:34 +0300 Subject: [PATCH] client: fix lint Signed-off-by: Vasiliy Tolstov --- client/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/client.go b/client/client.go index 71bedfd9..57a4f2b7 100644 --- a/client/client.go +++ b/client/client.go @@ -11,7 +11,7 @@ import ( var ( // DefaultClient is the global default client - DefaultClient Client = NewClient() + DefaultClient = NewClient() // DefaultContentType is the default content-type if not specified DefaultContentType = "application/json" // DefaultBackoff is the default backoff function for retries (minimum 10 millisecond and maximum 5 second)