loic-go/cmd/root.go
2025-03-25 17:53:35 +01:00

20 lines
327 B
Go

package cmd
import (
"fmt"
"github.com/spf13/cobra"
"os"
)
var rootCmd = &cobra.Command{
Use: "loic",
Short: "LOIC-Anwendung für Lasttests",
Long: `Eine Anwendung für skalierbare Lasttests im Kubernetes-Cluster.`,
}
func Execute() {
if err := rootCmd.Execute(); err != nil {
fmt.Println(err)
os.Exit(1)
}
}