| 14 | } |
| 15 | |
| 16 | export class InMemoryAgentStore implements AgentStore { |
| 17 | private readonly sessions = new Map<string, AgentSession>() |
| 18 | |
| 19 | get(name: string): Promise<AgentSession | null> { |
nothing calls this directly
no outgoing calls
no test coverage detected