(_ context.Context, e pii.PIIEvent)
| 25 | } |
| 26 | |
| 27 | func (r *recordingStore) Record(_ context.Context, e pii.PIIEvent) error { |
| 28 | r.mu.Lock() |
| 29 | defer r.mu.Unlock() |
| 30 | r.events = append(r.events, e) |
| 31 | return nil |
| 32 | } |
| 33 | func (r *recordingStore) List(_ context.Context, _ pii.ListQuery) ([]pii.PIIEvent, error) { |
| 34 | return nil, nil |
| 35 | } |