1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-23 22:16:57 +00:00
mastodon/app/workers/scheduler/subscriptions_cleanup_scheduler.rb

10 lines
181 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class Scheduler::SubscriptionsCleanupScheduler
include Sidekiq::Worker
sidekiq_options unique: :until_executed, retry: 0
2019-07-21 04:08:00 +02:00
def perform; end
end