| 7 | const CACHE_TTL_MS = 7 * 24 * 60 * 60 * 1000; // 7 days |
| 8 | |
| 9 | interface ModelCache { |
| 10 | timestamp: number; |
| 11 | models: Record<string, string[]>; |
| 12 | } |
| 13 | |
| 14 | function readCache(): ModelCache | null { |
| 15 | try { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…