package main import ( "os" "github.com/spf13/cobra" ) var rootCmd = &cobra.Command{ Use: "integrationtest", Short: "A simple tool to test system integrations", } func main() { if err := rootCmd.Execute(); err != nil { os.Exit(1) } }