| 12 | const handle = app.getRequestHandler(); |
| 13 | |
| 14 | interface ConnectParams { |
| 15 | host: string; |
| 16 | port: number; |
| 17 | username: string; |
| 18 | password?: string; |
| 19 | privateKey?: string; |
| 20 | } |
| 21 | |
| 22 | function handleSSHConnection(ws: WebSocket) { |
| 23 | let sshClient: Client | null = null; |
nothing calls this directly
no outgoing calls
no test coverage detected