| 143 | } |
| 144 | |
| 145 | type memory struct { |
| 146 | mutex sync.Mutex |
| 147 | records map[id.ID]*record |
| 148 | resolveCtx context.Context |
| 149 | } |
| 150 | |
| 151 | // Implements Database |
| 152 | func (d *memory) Store(ctx context.Context, val interface{}) (id.ID, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected