64b1044e7a
This decouples Ci::Config to provide a common interface for handling user configuration files.
9 lines
142 B
Ruby
9 lines
142 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Config
|
|
module Loader
|
|
FormatError = Class.new(StandardError)
|
|
end
|
|
end
|
|
end
|