(res: ServerResponse)
| 42 | } |
| 43 | |
| 44 | function sendSuccess(res: ServerResponse): void { |
| 45 | res.writeHead(200, { 'Content-Type': 'application/json' }) |
| 46 | res.end(JSON.stringify({ success: true })) |
| 47 | } |
| 48 | |
| 49 | function sendError(res: ServerResponse, message: string, status = 500): void { |
| 50 | res.writeHead(status, { 'Content-Type': 'application/json' }) |