hardware-tests/cmd/root.go
Gregory Ballantine cb0420f77d
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Added initial command structure; added ping network test command
2022-02-25 21:49:09 -05:00

22 lines
349 B
Go

package cmd
import (
"fmt"
"os"
"github.com/spf13/cobra"
)
var rootCmd = &cobra.Command{
Use: "bgbench",
Short: "Bit Goblin hardware benching tool.",
Long: `A PC hardware benchmarking tool written by Bit Goblin.`,
}
func Execute() {
if err := rootCmd.Execute(); err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
}