refactor(monorepo): rename operator api runtime

This commit is contained in:
2026-03-20 14:46:04 +08:00
parent bc08feda59
commit 4a324d841e
19 changed files with 106 additions and 47 deletions
@@ -0,0 +1,11 @@
package main
import (
"os"
"ai-workflow-skill/packages/operator-api/server"
)
func main() {
os.Exit(server.Execute(os.Args[1:], os.Stderr))
}