Files
oh-my-opencode/src/tools/delegate-task/resolve-call-id.ts
T

6 lines
189 B
TypeScript
Raw Normal View History

import type { ToolContextWithMetadata } from "./types"
export function resolveCallID(ctx: ToolContextWithMetadata): string | undefined {
return ctx.callID ?? ctx.callId ?? ctx.call_id
}