| 78 | // ── Cache ──────────────────────────────────────────────────────────── |
| 79 | |
| 80 | interface CacheEntry<T> { |
| 81 | data: T |
| 82 | expires: number |
| 83 | } |
| 84 | |
| 85 | const FILE_LIST_TTL = 5 * 60 * 1000 // 5 min |
| 86 | const BATCH_CONTENT_TTL = 15 * 60 * 1000 // 15 min |
nothing calls this directly
no outgoing calls
no test coverage detected