package main import ( "context" "fmt" "os" "github.com/pikasTech/HWLAB/internal/workbenchruntime" ) func main() { if err := workbenchruntime.Run(context.Background()); err != nil { fmt.Fprintf(os.Stderr, "hwlab-workbench-runtime: %v\n", err) os.Exit(1) } }