mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 01:31:39 -05:00
10 lines
179 B
Ruby
10 lines
179 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Import::WatcherJob < ApplicationJob
|
|
queue_as :imports
|
|
sidekiq_options retry: false
|
|
|
|
def perform
|
|
Imports::Watcher.new.call
|
|
end
|
|
end
|