| 8 | ) |
| 9 | |
| 10 | type memoryStore struct { |
| 11 | mu sync.RWMutex |
| 12 | requests map[string]RequestRow |
| 13 | steps map[string][]StepRow // request_id -> ordered steps |
| 14 | } |
| 15 | |
| 16 | // NewMemoryStore returns an in-process ledger (non-durable). |
| 17 | func NewMemoryStore() Store { |
nothing calls this directly
no outgoing calls
no test coverage detected