You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
268 B
Go

package main
import (
"fmt"
"os"
"git.buddy.wtf/buddy/open-hardware-monitor-client/lib/app"
)
func main() {
a := app.New()
handleErr(a.Run(os.Args))
}
func handleErr(err error) {
if err == nil {
return
}
fmt.Fprintf(os.Stderr, "%s\n", err)
os.Exit(1)
}