This commit is contained in:
Gregor Lohaus
2026-04-08 04:29:35 +02:00
commit 8254a28baa
480 changed files with 13386 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
/*
Copyright © 2026 NAME HERE <EMAIL ADDRESS>
*/
package cmd
import (
"fmt"
"os"
"<@var(context.project.goprefix)>/<@var(context.project.name)>/config"
"github.com/spf13/cobra"
)
// configInitCmd represents the configInit command
var configInitCmd = &cobra.Command{
Use: "configInit",
Short: "A brief description of your command",
Long: `A longer description that spans multiple lines and likely contains examples
and usage of using your command. For example:
Cobra is a CLI library for Go that empowers applications.
This application is a tool to generate the needed files
to quickly create a Cobra application.`,
Run: func(cmd *cobra.Command, args []string) {
err := config.Write(*config.DefaultConf)
if err != nil {
fmt.Println(err.Error())
os.Exit(1)
}
},
}
func init() {
rootCmd.AddCommand(configInitCmd)
// Here you will define your flags and configuration settings.
// Cobra supports Persistent Flags which will work for this command
// and all subcommands, e.g.:
// configInitCmd.PersistentFlags().String("foo", "", "A help for foo")
// Cobra supports local flags which will only run when this command
// is called directly, e.g.:
// configInitCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
}