(defaultExpiration, cleanupInterval time.Duration)
| 281 | } |
| 282 | |
| 283 | func New(defaultExpiration, cleanupInterval time.Duration) *Cache { |
| 284 | items := make(map[string]Item) |
| 285 | return newCacheWithJanitor(defaultExpiration, cleanupInterval, items) |
| 286 | } |
nothing calls this directly
no test coverage detected