(stateDir: string)
| 55 | // ─── Thread Index ────────────────────────────────────────────────────────── |
| 56 | |
| 57 | function threadsFilePath(stateDir: string): string { |
| 58 | return join(stateDir, "threads.json"); |
| 59 | } |
| 60 | |
| 61 | export function loadThreadIndex(stateDir: string): ThreadIndex { |
| 62 | const filePath = threadsFilePath(stateDir); |
no outgoing calls
no test coverage detected