()
| 557 | } |
| 558 | |
| 559 | export function readSessionState(): SessionState | null { |
| 560 | try { |
| 561 | if (!fs.existsSync(STATE_FILE)) return null; |
| 562 | return JSON.parse(fs.readFileSync(STATE_FILE, 'utf8')); |
| 563 | } catch { |
| 564 | return null; |
| 565 | } |
| 566 | } |
| 567 | |
| 568 | // ─── User-in-the-loop review on BLOCK ──────────────────────── |
| 569 | // |
no outgoing calls
no test coverage detected