From 80d7bccbdd5c254e36e71d1f33742007f133d7a6 Mon Sep 17 00:00:00 2001 From: Martyn Ranyard Date: Tue, 5 May 2026 21:46:17 +0200 Subject: [PATCH] Update copyright and license plus gofmt --- cmd/root.go | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) 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) } - -