mirror of
https://github.com/glitch-soc/mastodon.git
synced 2024-11-15 12:44:24 -05:00
10 lines
181 B
Ruby
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
|