(chatId: string, res: Response)
| 55 | } |
| 56 | |
| 57 | addClient(chatId: string, res: Response) { |
| 58 | this.clients.set(chatId, { clientType: 'INTERNAL', response: res, started: false }) |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * Safely write data to a client's response. If the write fails (e.g., client already disconnected), |
no test coverage detected