about summary refs log tree commit diff
path: root/app/workers/processing_worker.rb
blob: cf3bd83979a8c3182ad6e5906e3c2ccccf5a4ea4 (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class ProcessingWorker
  include Sidekiq::Worker

  sidekiq_options backtrace: true

  def perform(account_id, body); end
end