| 12 | var _ Cache = &MemoryCache{} |
| 13 | |
| 14 | type MemoryCache struct { |
| 15 | artifacts sync.Map // Map to store artifact information |
| 16 | blobs sync.Map // Map to store blob information |
| 17 | } |
| 18 | |
| 19 | func NewMemoryCache() *MemoryCache { |
| 20 | return &MemoryCache{} |
nothing calls this directly
no outgoing calls
no test coverage detected