(sessionId: string, progress: Progress)
| 4 | export interface IStorage { |
| 5 | getProgress(sessionId: string): Promise<Progress>; |
| 6 | updateProgress(sessionId: string, progress: Progress): Promise<Progress>; |
| 7 | getAttempts(sessionId: string): Promise<number>; |
| 8 | incrementAttempts(sessionId: string): Promise<number>; |
| 9 | validateFlag(sessionId: string, flag: string): Promise<FlagResponse>; |
no outgoing calls
no test coverage detected