()
| 107 | |
| 108 | // ─── State File ──────────────────────────────────────────────── |
| 109 | function readState(): ServerState | null { |
| 110 | try { |
| 111 | const data = fs.readFileSync(config.stateFile, 'utf-8'); |
| 112 | return JSON.parse(data); |
| 113 | } catch { |
| 114 | return null; |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | // isProcessAlive is imported from ./error-handling |
| 119 |
no outgoing calls
no test coverage detected