1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-12-05 02:08:57 +09:00
whippy-edition/app/workers/scheduler/subscriptions_cleanup_scheduler.rb
2019-07-21 04:08:00 +02:00

10 lines
181 B
Ruby

# frozen_string_literal: true
class Scheduler::SubscriptionsCleanupScheduler
include Sidekiq::Worker
sidekiq_options unique: :until_executed, retry: 0
def perform; end
end