1
0
mirror of https://github.com/funamitech/mastodon synced 2024-12-12 05:39:02 +09:00
YuruToot/app/workers/pubsubhubbub/distribution_worker.rb

10 lines
171 B
Ruby
Raw Normal View History

2016-11-28 21:36:47 +09:00
# frozen_string_literal: true
class Pubsubhubbub::DistributionWorker
include Sidekiq::Worker
sidekiq_options queue: 'push'
def perform(stream_entry_ids); end
2016-11-28 21:36:47 +09:00
end