Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fips.rb « packages « concerns « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b8589cdc99137c0b4ad32a03be4fff08ea6b909c (plain)
1
2
3
4
5
6
7
8
9
10
11
# rubocop:disable Naming/FileName
# frozen_string_literal: true

module Packages
  module FIPS
    extend ActiveSupport::Concern

    DisabledError = Class.new(StandardError)
  end
end
# rubocop:enable Naming/FileName