======================================================================== FastCache ========================================================================
| 138 | //======================================================================== |
| 139 | |
| 140 | type FastCache struct { |
| 141 | c *fastcache.Cache |
| 142 | } |
| 143 | |
| 144 | func (b *FastCache) Get(key []byte) ([]byte, error) { |
| 145 | v := b.c.Get(nil, key) |
nothing calls this directly
no outgoing calls
no test coverage detected