summaryrefslogtreecommitdiff
path: root/app/workers/import_export_project_cleanup_worker.rb
blob: 72e3a9ae734686fe50e65a541b66d9a2bc7dfecb (plain)
1
2
3
4
5
6
7
8
9
class ImportExportProjectCleanupWorker
  include Sidekiq::Worker

  sidekiq_options queue: :default

  def perform
    ImportExportCleanUpService.new.execute
  end
end