blob: 210739a657511d8fda3dfb6a0bdc1692cc71359b [file] [log] [blame]
Lorenz Brun62948542023-01-10 13:28:44 +00001package main
2
3import (
4 "fmt"
5
6 "google.golang.org/protobuf/encoding/prototext"
7)
8
9func main() {
10 report, errs := gatherHWReport()
11 // Just print the report for now
12 fmt.Println(prototext.Format(report))
13 fmt.Println("Encountered errors:", errs)
14}