Sha256: 56e05211f4acb3554489ef81775e84ee29e30f4de67afef6cf2abffeae798a70

Contents?: true

Size: 290 Bytes

Versions: 1

Compression:

Stored size: 290 Bytes

Contents

# frozen_string_literal: true

# Initializes the appropriate Messenger class and calls the event method
module Nuntius
  class DeliverInboundMessageJob < ApplicationJob
    def perform(inbound_message)
      Nuntius::DeliverInboundMessageService.new(inbound_message).call
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
nuntius-1.0.27 app/jobs/nuntius/deliver_inbound_message_job.rb