memKeys is a naive in-memory implementation of KeyValue for test & development purposes only.
| 41 | // memKeys is a naive in-memory implementation of KeyValue for test & development |
| 42 | // purposes only. |
| 43 | type memKeys struct { |
| 44 | mu sync.Mutex // guards db |
| 45 | db *memdb.DB |
| 46 | } |
| 47 | |
| 48 | func (mk *memKeys) Wipe() error { |
| 49 | mk.mu.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected