(_ context.Context, requestID string)
| 79 | } |
| 80 | |
| 81 | func (m *memoryStore) ListSteps(_ context.Context, requestID string) ([]StepRow, error) { |
| 82 | m.mu.RLock() |
| 83 | defer m.mu.RUnlock() |
| 84 | if _, ok := m.requests[requestID]; !ok { |
| 85 | return nil, ErrNotFound |
| 86 | } |
| 87 | out := slices.Clone(m.steps[requestID]) |
| 88 | return out, nil |
| 89 | } |
| 90 | |
| 91 | func (m *memoryStore) Close() error { return nil } |
| 92 |
nothing calls this directly
no outgoing calls
no test coverage detected