17 lines
270 B
Go
17 lines
270 B
Go
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)
|
|
}
|
|
}
|