refactor(monorepo): remove legacy root runtime ownership

This commit is contained in:
2026-03-20 13:47:53 +08:00
parent 388c25b1b0
commit d00b2a30ee
99 changed files with 144 additions and 17619 deletions
+11
View File
@@ -0,0 +1,11 @@
package orch
import (
"io"
internalorch "ai-workflow-skill/packages/orch-runtime/internal/cli/orch"
)
func Execute(args []string, stdout, stderr io.Writer) int {
return internalorch.Execute(args, stdout, stderr)
}
+1 -1
View File
@@ -3,7 +3,7 @@ package main
import (
"os"
orchcli "ai-workflow-skill/packages/orch-runtime/internal/cli/orch"
orchcli "ai-workflow-skill/packages/orch-runtime/cli/orch"
)
func main() {