initial rebuild

This commit is contained in:
allanice001
2025-09-01 13:34:13 +01:00
commit 95bd9615d1
100 changed files with 12440 additions and 0 deletions

19
cmd/cli/show-config.go Normal file
View File

@@ -0,0 +1,19 @@
package cli
import (
"github.com/glueops/autoglue/internal/config"
"github.com/spf13/cobra"
)
var showConfigCmd = &cobra.Command{
Use: "show-config",
Short: "Show the current configuration",
Long: "Show the current configuration",
Run: func(cmd *cobra.Command, args []string) {
config.DebugPrintConfig()
},
}
func init() {
rootCmd.AddCommand(showConfigCmd)
}