| 16 | } |
| 17 | |
| 18 | export interface Log { |
| 19 | id: string; |
| 20 | timestamp: number; |
| 21 | message: string; |
| 22 | } |
| 23 | |
| 24 | export function LambdaGrouper() { |
| 25 | const pending = new Map<string, InvocationNext>(); |
nothing calls this directly
no outgoing calls
no test coverage detected