retrospring/app/workers/push_notification_worker.rb
2024-09-05 10:23:01 +02:00

10 lines
183 B
Ruby

# frozen_string_literal: true
class PushNotificationWorker
include Sidekiq::Worker
sidekiq_options queue: :push_notification, retry: 0
def perform(notification_id)
end
end