Files
peardock/build/stubs/ssh2.cjs
T
2026-07-11 11:39:59 -04:00

17 lines
401 B
JavaScript

/**
* Stub: dockerode optionally loads ssh2 for remote Docker hosts.
* peardock server only uses the local socket — ssh2 is never required at runtime.
*/
'use strict'
class Client {
connect() {
throw new Error('ssh2 is not available in peardock standalone (local Docker socket only)')
}
on() {
return this
}
end() {}
}
module.exports = { Client }
module.exports.Client = Client