| 41 | |
| 42 | /** In-memory {@link SandboxStore}. Resume works only within one process. */ |
| 43 | export class InMemorySandboxStore implements SandboxStore { |
| 44 | private readonly map = new Map<string, SandboxRecord>() |
| 45 | |
| 46 | get(key: string): Promise<SandboxRecord | null> { |
nothing calls this directly
no outgoing calls
no test coverage detected