Lorenz Brun | 6294854 | 2023-01-10 13:28:44 +0000 | [diff] [blame] | 1 | package main |
2 | |||||
3 | import ( | ||||
4 | "fmt" | ||||
5 | |||||
6 | "google.golang.org/protobuf/encoding/prototext" | ||||
7 | ) | ||||
8 | |||||
9 | func 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 | } |