10 lines
145 B
Ruby
10 lines
145 B
Ruby
|
# frozen_string_literal: true
|
||
|
#
|
||
|
module AutoDevopsQueue
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
included do
|
||
|
queue_namespace :auto_devops
|
||
|
end
|
||
|
end
|