(chatId: string, res: Response)
| 51 | } |
| 52 | |
| 53 | addExternalClient(chatId: string, res: Response) { |
| 54 | this.clients.set(chatId, { clientType: 'EXTERNAL', response: res, started: false }) |
| 55 | } |
| 56 | |
| 57 | addClient(chatId: string, res: Response) { |
| 58 | this.clients.set(chatId, { clientType: 'INTERNAL', response: res, started: false }) |
no test coverage detected