diff --git a/cmd/root.go b/cmd/root.go index 04d46bb..7d1d085 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -1,13 +1,13 @@ /* -Copyright © 2026 NAME HERE - +Copyright © 2026 Martyn Ranyard +GPLv3 licensed */ package cmd import ( - "os" - "fmt" "errors" + "fmt" + "os" "github.com/spf13/cobra" "github.com/spf13/viper" @@ -16,7 +16,7 @@ import ( var ( cfgFile string -// rootCmd represents the base command when called without any subcommands + // rootCmd represents the base command when called without any subcommands rootCmd = &cobra.Command{ Use: "helmfile2argo", Short: "Convert a helmfile to a set of argocd applications", @@ -68,5 +68,3 @@ func init() { rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is $HOME/.helmfile2argo/config)") initializeConfig(rootCmd) } - -