(sessionId: string, session: UserSession)
| 16 | |
| 17 | // Store a user session |
| 18 | storeSession(sessionId: string, session: UserSession): void { |
| 19 | this.sessions.set(sessionId, session); |
| 20 | } |
| 21 | |
| 22 | // Retrieve a user session |
| 23 | getSession(sessionId: string): UserSession | undefined { |
nothing calls this directly
no outgoing calls
no test coverage detected