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

  included do
    queue_namespace :auto_devops
  end
end