(id: string)
| 36 | } |
| 37 | |
| 38 | getContext(id: string): Promise<McpAuthContext | null> { |
| 39 | return getRedisCache().getJson<McpAuthContext>(redisKey(id)); |
| 40 | } |
| 41 | |
| 42 | async touchContext(id: string): Promise<void> { |
| 43 | await getRedisCache().expire(redisKey(id), SESSION_TTL_SECONDS); |
no test coverage detected