| 26 | const CACHE_STALENESS_MS = 24 * 60 * 60 * 1000; // 1 day in milliseconds |
| 27 | |
| 28 | interface CacheMetadata { |
| 29 | timestamp: number; |
| 30 | branch: string; |
| 31 | } |
| 32 | |
| 33 | /** |
| 34 | * Cleans up resources (file, response, request) |
nothing calls this directly
no outgoing calls
no test coverage detected