()
| 325 | } |
| 326 | |
| 327 | func defaultCacheMemoryEntries() []CacheMemoryEntry { |
| 328 | return []CacheMemoryEntry{ |
| 329 | { |
| 330 | ID: "default", |
| 331 | Key: generateDefaultCacheKey("default"), |
| 332 | AllowedExtensions: constants.DefaultAllowedMemoryExtensions, |
| 333 | }, |
| 334 | } |
| 335 | } |
| 336 | |
| 337 | func parseCacheMemoryEntries(cacheArray []any) ([]CacheMemoryEntry, error) { |
| 338 | cacheLog.Printf("Processing cache array with %d entries", len(cacheArray)) |
no test coverage detected