(ctx: WorkflowContext)
| 266 | } |
| 267 | |
| 268 | async function disposeWorkflowContext(ctx: WorkflowContext): Promise<void> { |
| 269 | await disposeWorkflowResources({ |
| 270 | tempDir: ctx.tempDir, |
| 271 | services: ctx.services, |
| 272 | session: ctx.session, |
| 273 | codexOauthService: ctx.codexOauthService, |
| 274 | }); |
| 275 | } |
| 276 | |
| 277 | async function createWorkflowContext(options: { |
| 278 | opts: WorkflowCLIOptions; |
no test coverage detected