debian-mirror-gitlab/app/workers/concerns/chaos_queue.rb

10 lines
134 B
Ruby
Raw Normal View History

2019-12-16 22:33:55 +05:30
# frozen_string_literal: true
#
module ChaosQueue
extend ActiveSupport::Concern
included do
queue_namespace :chaos
end
end