()
| 19 | */ |
| 20 | export class SessionManager { |
| 21 | generateId(): string { |
| 22 | return randomUUID(); |
| 23 | } |
| 24 | |
| 25 | async setContext(id: string, context: McpAuthContext): Promise<void> { |
| 26 | await getRedisCache().setJson(redisKey(id), SESSION_TTL_SECONDS, context); |
no outgoing calls
no test coverage detected