diff options
| author | Dax Raad <[email protected]> | 2025-05-29 11:17:34 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-05-29 11:17:34 -0400 |
| commit | 42c1cd6a852be5295aedc5c19e1a2aef45a464e3 (patch) | |
| tree | 4c73d3121590991e487b86b6c0ea445fad5b732d /js/src/index.ts | |
| parent | 33a831d2be1fd7bea60421287f118be0bd968650 (diff) | |
| download | opencode-42c1cd6a852be5295aedc5c19e1a2aef45a464e3.tar.gz opencode-42c1cd6a852be5295aedc5c19e1a2aef45a464e3.zip | |
event
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"], - }); }); }); |
