| 20 | ) |
| 21 | |
| 22 | type SyncCache struct { |
| 23 | cache DefaultCache |
| 24 | sync.RWMutex |
| 25 | } |
| 26 | |
| 27 | func (c *SyncCache) Set(key string, value bool, extra ...interface{}) error { |
| 28 | ttl := time.Duration(-1) |
nothing calls this directly
no outgoing calls
no test coverage detected