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