(cacheMap map[string]any, entry *CacheMemoryEntry)
| 176 | } |
| 177 | |
| 178 | func parseCacheMemoryDescription(cacheMap map[string]any, entry *CacheMemoryEntry) { |
| 179 | if descStr, ok := cacheMap["description"].(string); ok { |
| 180 | entry.Description = descStr |
| 181 | } |
| 182 | } |
| 183 | |
| 184 | func parseCacheMemoryRetentionDays(cacheMap map[string]any, entry *CacheMemoryEntry) error { |
| 185 | retentionDays, exists := cacheMap["retention-days"] |
no outgoing calls
no test coverage detected