Gitiles
Code Review
Sign In
gerrit-dev.monogon.dev
/
monogon
/
a01b4ee048e27dc05452912d25d6f718fb263c61
/
.
/
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)
}