diff options
Diffstat (limited to 'js/src/index.ts')
| -rw-r--r-- | js/src/index.ts | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/js/src/index.ts b/js/src/index.ts index d5b388166..380ea64cd 100644 --- a/js/src/index.ts +++ b/js/src/index.ts @@ -1,3 +1,4 @@ +import "zod-openapi/extend"; import { App } from "./app"; import { Server } from "./server/server"; import fs from "fs/promises"; @@ -15,13 +16,6 @@ cli.command("", "Start the opencode in interactive mode").action(async () => { await App.provide({ directory: process.cwd() }, async () => { await Share.init(); Server.listen(); - - Bun.spawnSync({ - stderr: "inherit", - stdout: "inherit", - stdin: "inherit", - cmd: ["go", "run", "cmd/main.go"], - }); }); }); |
