| 20 | ) |
| 21 | |
| 22 | type inMemoryManagerStore struct { |
| 23 | tasks map[string]Task |
| 24 | blocks map[string]map[string]TaskBlock |
| 25 | blockRecurrences map[string]BlockRecurrence |
| 26 | dependencies map[string]map[string]Dependency |
| 27 | runs map[string]Run |
| 28 | triageStates map[string]TriageState |
| 29 | profiles map[string]ExecutionProfile |
| 30 | reviews map[string]RunReview |
| 31 | events []Event |
| 32 | eventSequenceByID map[string]int64 |
| 33 | nextEventSequence int64 |
| 34 | idempotencyByKey map[string]RunIdempotency |
| 35 | } |
| 36 | |
| 37 | type forceInputStore struct { |
| 38 | *inMemoryManagerStore |
nothing calls this directly
no outgoing calls
no test coverage detected