refactor(acp): drop async from synchronous ACP.init (#25520)

This commit is contained in:
Kit Langton
2026-05-02 22:38:44 -04:00
committed by GitHub
parent 61150f6391
commit 0956b15c52
2 changed files with 2 additions and 2 deletions

View File

@@ -52,7 +52,7 @@ export const AcpCommand = effectCmd({
})
const stream = ndJsonStream(input, output)
const agent = yield* Effect.promise(() => ACP.init({ sdk }))
const agent = ACP.init({ sdk })
new AgentSideConnection((conn) => {
return agent.create(conn, { sdk })