feat: split workbench runtime read service

This commit is contained in:
lyon
2026-06-21 19:42:26 +08:00
parent e23e9522d1
commit cf9ac0b08e
10 changed files with 966 additions and 6 deletions
+16
View File
@@ -0,0 +1,16 @@
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)
}
}