Update copyright and license plus gofmt

This commit is contained in:
Martyn 2026-05-05 21:46:17 +02:00
parent e53c091e3f
commit 80d7bccbdd

View file

@ -1,13 +1,13 @@
/*
Copyright © 2026 NAME HERE <EMAIL ADDRESS>
Copyright © 2026 Martyn Ranyard <m@rtyn.berlin>
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)
}