summaryrefslogtreecommitdiff
path: root/app/workers/database/batched_background_migration/main_execution_worker.rb
blob: 661496a86a91a63137f55a69771e35a058d82d53 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Database
  module BatchedBackgroundMigration
    class MainExecutionWorker # rubocop:disable Scalability/IdempotentWorker
      include ExecutionWorker
    end
  end
end