| 995 | } |
| 996 | |
| 997 | type defaultPreparedCache struct { |
| 998 | cache *lru.Cache |
| 999 | } |
| 1000 | |
| 1001 | func (d defaultPreparedCache) Store(id string, entry *proxycore.PreparedEntry) { |
| 1002 | d.cache.Add(id, entry) |
nothing calls this directly
no outgoing calls
no test coverage detected