| 24 | var _ CacheClient = &InMemoryCache{} |
| 25 | |
| 26 | type InMemoryCache struct { |
| 27 | memCache *gocache.Cache |
| 28 | } |
| 29 | |
| 30 | func (i *InMemoryCache) Set(item *Item) error { |
| 31 | var buf bytes.Buffer |
nothing calls this directly
no outgoing calls
no test coverage detected