From bd194ba445947c57f1d20893562a69043a5c4fc1 Mon Sep 17 00:00:00 2001 From: hazelmayank Date: Wed, 27 May 2026 01:55:29 +0530 Subject: [PATCH] refactor(config): remove unused ConfigPath package variable Signed-off-by: hazelmayank --- pkg/config/config.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkg/config/config.go b/pkg/config/config.go index e5ff9a98..b7b6dd1d 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -22,7 +22,6 @@ import ( "net/http" "net/http/httputil" "os" - "path/filepath" strings "strings" ) @@ -33,8 +32,6 @@ var ( CaCertPaths string // Verbose represents a debug flag for HTTP Exchanges Verbose bool = false - - ConfigPath = filepath.Join(os.Getenv("HOME"), ".microcks-cli", "config.yaml") ) // CreateTLSConfig wraps the creation of tls.Config object for use with HTTP Client for example.