(deviceId: string)
| 30 | |
| 31 | // ── Redis key helpers ─────────────────────────────────────────────────────── |
| 32 | export const sessionKey = (deviceId: string) => `session:${PROJECT_ID}:${deviceId}`; |
| 33 | export const wallclockKey = `session:wallclock:${PROJECT_ID}`; |
| 34 | export const profileKey = (profileId: string) => |
| 35 | `session:profile:${PROJECT_ID}:${profileId}`; |
no outgoing calls
no test coverage detected