debian-mirror-gitlab/app/workers/concerns/chaos_queue.rb
2019-10-12 21:52:04 +05:30

10 lines
134 B
Ruby

# frozen_string_literal: true
#
module ChaosQueue
extend ActiveSupport::Concern
included do
queue_namespace :chaos
end
end