memoryStore implements a Store in memory.
| 6 | |
| 7 | // memoryStore implements a Store in memory. |
| 8 | type memoryStore struct { |
| 9 | s map[string]*Container |
| 10 | sync.RWMutex |
| 11 | } |
| 12 | |
| 13 | // NewMemoryStore initializes a new memory store. |
| 14 | func NewMemoryStore() Store { |
nothing calls this directly
no outgoing calls
no test coverage detected