Files
2025-04-15 17:09:46 +02:00

17 lines
287 B
Go

package cmd
import "github.com/spf13/cobra"
var rootCmd = &cobra.Command{
Use: "netbird-mgmt",
Short: "",
Long: "",
Version: "",
SilenceUsage: true,
}
// Execute is the entry point for all commands.
func Execute() error {
return rootCmd.Execute()
}