From df8730463e41461caf63e1ed9844d7e74106b717 Mon Sep 17 00:00:00 2001 From: David Allen Date: Fri, 29 Aug 2025 16:07:57 -0600 Subject: [PATCH] cleanup: removed unused code/comments --- cmd/root.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/cmd/root.go b/cmd/root.go index b068dcd..f9ac4bc 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -10,14 +10,6 @@ import ( ) var ( - // host string - // path string - // outputPath string - // rootPath string - // profile string - // plugins []string - // timeout int - // logFile string loglevel logger.LogLevel = logger.INFO ) @@ -69,7 +61,6 @@ func Execute() { func init() { cobra.OnInitialize( initLogger, - // initializeConfig, ) // initialize the config a single time rootCmd.PersistentFlags().VarP(&loglevel, "log-level", "l", "Set the log level output")