(key: string)
| 4 | export { LRUCache } from 'lru-cache'; |
| 5 | |
| 6 | export const deleteCache = (key: string) => { |
| 7 | return getRedisCache().del(key); |
| 8 | }; |
| 9 | |
| 10 | // Global LRU cache for getCache function |
| 11 | const globalLruCache = new LRUCache<string, any>({ |
nothing calls this directly
no test coverage detected