Sftp.prototype.put = function (localPathFile, remotePathFile) {
  // return promise of method
  return this.sftp.put(this.config, localPathFile, remotePathFile);
};