From c0290e776c0b26acb148c6980241c9594f939777 Mon Sep 17 00:00:00 2001 From: Pavel Sinitsin Date: Mon, 9 Sep 2024 18:14:37 +0300 Subject: [PATCH] Remove unnecessary import block formatting Consolidate the import statement to a single line for readability. This change reduces code clutter and adheres to cleaner code standards. --- client/client.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/client/client.go b/client/client.go index ca4b7fc..9a9bc1c 100644 --- a/client/client.go +++ b/client/client.go @@ -1,8 +1,6 @@ package client -import ( - "github.com/go-resty/resty/v2" -) +import "github.com/go-resty/resty/v2" const ( AuthApiUrl = "https://bp.iek.ru/oauth/login"