(ctx context.Context, row RequestRow)
| 11 | // Store persists requests and steps (ledger). |
| 12 | type Store interface { |
| 13 | CreateRequest(ctx context.Context, row RequestRow) error |
| 14 | UpdateRequest(ctx context.Context, requestID string, patch RequestPatch) error |
| 15 | AppendStep(ctx context.Context, step StepRow) error |
| 16 | GetRequest(ctx context.Context, requestID string) (RequestRow, error) |
no outgoing calls