hardware-tests/cmd/root.go

22 lines
349 B
Go
Raw Normal View History

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