0
0
Fork 0
mirror of https://github.com/lunaisnotaboy/mastodon.git synced 2025-03-29 05:19:22 +00:00
mastodon/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