(error: string)
| 214 | } |
| 215 | |
| 216 | private errorResponse(error: string): { success: boolean; error: string } { |
| 217 | return { success: false, error }; |
| 218 | } |
| 219 | |
| 220 | private async handleRequest(req: HTTPRequestLike, res: HTTPResponseLike): Promise<void> { |
| 221 | try { |
no outgoing calls
no test coverage detected