======================================================================== BigCache ========================================================================
| 98 | //======================================================================== |
| 99 | |
| 100 | type BigCache struct { |
| 101 | c *bigcache.BigCache |
| 102 | } |
| 103 | |
| 104 | func (b *BigCache) Get(key []byte) ([]byte, error) { |
| 105 | return b.c.Get(string(key)) |
nothing calls this directly
no outgoing calls
no test coverage detected