======================================================================== FreeCache ========================================================================
| 175 | //======================================================================== |
| 176 | |
| 177 | type FreeCache struct { |
| 178 | c *freecache.Cache |
| 179 | } |
| 180 | |
| 181 | func (f *FreeCache) Get(key []byte) ([]byte, error) { |
| 182 | return f.c.Get(key) |
nothing calls this directly
no outgoing calls
no test coverage detected