(cacheType CacheType, key string)
| 36 | ) |
| 37 | |
| 38 | func CacheKey(cacheType CacheType, key string) string { |
| 39 | return string(cacheType) + ":" + key |
| 40 | } |
| 41 | |
| 42 | type StorageCache struct { |
| 43 | cacheExpirationConfigs map[CacheType]time.Duration |
no outgoing calls
no test coverage detected