blob: 704b2520c75b0464fdf0ba4a6d37cb651fea9a83 [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() {
Lorenz Brun6da0f612023-02-21 20:44:28 +010010 fmt.Println("Monogon BMaaS Agent started")
Lorenz Brun62948542023-01-10 13:28:44 +000011 report, errs := gatherHWReport()
12 // Just print the report for now
13 fmt.Println(prototext.Format(report))
14 fmt.Println("Encountered errors:", errs)
15}