1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-12-20 09:38:24 +09:00
whippy-edition/app/workers/scheduler/subscriptions_scheduler.rb

10 lines
174 B
Ruby
Raw Normal View History

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