(id: string)
| 40 | } |
| 41 | |
| 42 | async touchContext(id: string): Promise<void> { |
| 43 | await getRedisCache().expire(redisKey(id), SESSION_TTL_SECONDS); |
| 44 | } |
| 45 | |
| 46 | async deleteContext(id: string): Promise<void> { |
| 47 | await getRedisCache().del(redisKey(id)); |
no test coverage detected