| 308 | // store in a production application. |
| 309 | const sessionStore: { [key: string]: SessionData } = {}; |
| 310 | class JsonSessionStore<S = any> implements SessionStore<S> { |
| 311 | async get(sessionId: string): Promise<SessionData<S> | undefined> { |
| 312 | if (sessionId in sessionStore) |
| 313 | return sessionStore[sessionId]; |
nothing calls this directly
no outgoing calls
no test coverage detected