simpleImageStore is for testing images in memory, no filter support
| 429 | // simpleImageStore is for testing images in memory, |
| 430 | // no filter support |
| 431 | type simpleImageStore struct { |
| 432 | l sync.Mutex |
| 433 | images map[string]images.Image |
| 434 | } |
| 435 | |
| 436 | func newSimpleImageStore() images.Store { |
| 437 | return &simpleImageStore{ |
nothing calls this directly
no outgoing calls
no test coverage detected