summaryrefslogtreecommitdiff
path: root/app/workers/concerns/chaos_queue.rb
blob: e406509d12dcc08af388461ee42950fb5d44789d (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true
#
module ChaosQueue
  extend ActiveSupport::Concern

  included do
    queue_namespace :chaos
  end
end