2016-11-28 07:36:47 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Pubsubhubbub::DistributionWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2016-11-28 20:07:14 -05:00
|
|
|
sidekiq_options queue: 'push'
|
|
|
|
|
2019-07-06 17:26:16 -04:00
|
|
|
def perform(stream_entry_ids); end
|
2016-11-28 07:36:47 -05:00
|
|
|
end
|