mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2025-01-10 16:22:34 +01:00
8 lines
156 B
Ruby
8 lines
156 B
Ruby
|
class ProcessingWorker
|
||
|
include Sidekiq::Worker
|
||
|
|
||
|
def perform(account_id, body)
|
||
|
ProcessFeedService.new.call(body, Account.find(account_id))
|
||
|
end
|
||
|
end
|