fdc17bea5 ^
a91c3ef6c ^
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