11 lines
167 B
Ruby
11 lines
167 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Workers
|
|
class RecurringPodCheck < Base
|
|
sidekiq_options queue: :low
|
|
|
|
def perform
|
|
Pod.check_all!
|
|
end
|
|
end
|
|
end
|