chore: generate

This commit is contained in:
opencode-agent[bot]
2026-05-15 17:37:07 +00:00
parent 0c9cfe923f
commit 48293c5271
3 changed files with 24 additions and 11 deletions

View File

@@ -28,7 +28,12 @@ export const bind = <Args extends readonly unknown[], Result>(fn: (...args: Args
const captured = captureSync()
return (...args: Args) =>
restoreWorkspace(captured.workspace, () =>
Effect.runSync(attachWith(Effect.sync(() => fn(...args)), captured)),
Effect.runSync(
attachWith(
Effect.sync(() => fn(...args)),
captured,
),
),
)
}