| 527 | } |
| 528 | |
| 529 | type taskRoleRuntimeStore struct { |
| 530 | mu sync.Mutex |
| 531 | tasks map[string]taskpkg.Task |
| 532 | runs map[string]taskpkg.Run |
| 533 | profiles map[string]taskpkg.ExecutionProfile |
| 534 | } |
| 535 | |
| 536 | func newTaskRoleRuntimeStore(records ...any) *taskRoleRuntimeStore { |
| 537 | store := &taskRoleRuntimeStore{ |
nothing calls this directly
no outgoing calls
no test coverage detected