mirror of
https://github.com/safing/portmaster
synced 2025-04-20 02:49:10 +00:00
18 lines
247 B
Go
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)
|
|
}
|
|
}
|