Gitiles
Code Review
Sign In
gerrit-dev.monogon.dev
/
monogon
/
7762831b4c4d68f77bdc9fbf1f812390d970a4b3
/
.
/
cloud
/
agent
/
main.go
blob: 210739a657511d8fda3dfb6a0bdc1692cc71359b [
file
] [
log
] [
blame
]
package main
import (
"fmt"
"google.golang.org/protobuf/encoding/prototext"
)
func main() {
report, errs := gatherHWReport()
// Just print the report for now
fmt.Println(prototext.Format(report))
fmt.Println("Encountered errors:", errs)
}