safing-portmaster/cmds/integrationtest/main.go
2023-04-25 14:25:43 +02:00

18 lines
247 B
Go

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)
}
}