()
| 604 | constructor(private child: Pick<MyAssistant, "parentAgent">) {} |
| 605 | |
| 606 | private parent(): Promise<DurableObjectStub<AssistantDirectory>> { |
| 607 | this.#stubPromise ??= this.child.parentAgent(AssistantDirectory); |
| 608 | return this.#stubPromise; |
| 609 | } |
| 610 | |
| 611 | async readFile(path: string) { |
| 612 | return (await this.parent()).readFile(path); |
no test coverage detected