Memory struct contains *memcache.Client
| 7 | |
| 8 | // Memory struct contains *memcache.Client |
| 9 | type Memory struct { |
| 10 | sync.Mutex |
| 11 | |
| 12 | data map[string]*data |
| 13 | } |
| 14 | |
| 15 | type data struct { |
| 16 | Data interface{} |
nothing calls this directly
no outgoing calls
no test coverage detected