1
0
mirror of https://github.com/funamitech/mastodon synced 2024-12-01 00:08:39 +09:00
YuruToot/app/workers/processing_worker.rb

8 lines
156 B
Ruby
Raw Normal View History

class ProcessingWorker
include Sidekiq::Worker
def perform(account_id, body)
ProcessFeedService.new.call(body, Account.find(account_id))
end
end