Add integrationtest utility

This commit is contained in:
Daniel
2023-03-30 10:33:09 +02:00
parent 253e3f95f8
commit 7d3b45f1a9
7 changed files with 148 additions and 9 deletions

View File

@@ -0,0 +1,18 @@
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)
}
}