about summary refs log tree commit diff
path: root/app/workers/pubsubhubbub/distribution_worker.rb
blob: 75bac5d6fadbc7252b54f7ca8f80b11f182bfe4b (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class Pubsubhubbub::DistributionWorker
  include Sidekiq::Worker

  sidekiq_options queue: 'push'

  def perform(stream_entry_ids); end
end