blob: 3b11a4c5ea52cd3bf2115cba512765a54339aae8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
# frozen_string_literal: true
class ProcessingWorker
include Sidekiq::Worker
def perform(account_id, body)
ProcessFeedService.new.call(body, Account.find(account_id))
end
end
|