From 7436b359d20ead5b3e2703a3dbfc3c53ac8a3381 Mon Sep 17 00:00:00 2001 From: Vladislav Yarmak Date: Sun, 4 Sep 2022 22:44:15 +0300 Subject: [PATCH] fmt --- auth.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/auth.go b/auth.go index 3c8eb15..fde1570 100644 --- a/auth.go +++ b/auth.go @@ -5,12 +5,13 @@ import ( "crypto/subtle" "encoding/base64" "errors" - "golang.org/x/crypto/bcrypt" "net/http" "net/url" "os" "strconv" "strings" + + "golang.org/x/crypto/bcrypt" ) const AUTH_REQUIRED_MSG = "Proxy authentication required.\n"