(session: GoalQueueSession)
| 38 | const queueMutationLocks = new Map<string, Promise<void>>(); |
| 39 | |
| 40 | export async function readGoalQueue(session: GoalQueueSession): Promise<GoalQueueSnapshot> { |
| 41 | const state = await readQueueFile(session); |
| 42 | return toSnapshot(state); |
| 43 | } |
| 44 | |
| 45 | export async function appendGoalQueueItem( |
| 46 | session: GoalQueueSession, |
no test coverage detected