dawarich/app/jobs/import/watcher_job.rb
2024-10-03 15:08:23 +02:00

9 lines
148 B
Ruby

# frozen_string_literal: true
class Import::WatcherJob < ApplicationJob
queue_as :imports
def perform
Imports::Watcher.new.call
end
end