class PgExport::Operations::OpenFtpConnection

Public Instance Methods

call(inputs) click to toggle source
# File lib/pg_export/lib/pg_export/operations/open_ftp_connection.rb, line 12
def call(inputs)
  ftp_adapter = ftp_adapter_factory.ftp_adapter
  ftp_adapter.open_ftp
  Success(inputs.merge(ftp_adapter: ftp_adapter))
end