(prefix: string, ...parts: string[])
| 7 | } |
| 8 | |
| 9 | export function getCacheKey(prefix: string, ...parts: string[]): string { |
| 10 | return `${prefix}:${parts.join(':')}`; |
| 11 | } |
| 12 | |
| 13 | async function cleanupExpiredCache() { |
| 14 | try { |
no outgoing calls
no test coverage detected