Create root command via function

This commit is contained in:
Michael Eischer
2025-02-07 18:28:56 +01:00
parent aa9cdf93cf
commit 412d6d9ec5
43 changed files with 163 additions and 215 deletions
+9
View File
@@ -0,0 +1,9 @@
//go:build !debug
package main
import "github.com/spf13/cobra"
func registerDebugCommand(_ *cobra.Command) {
// No commands to register in non-debug mode
}