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

group_architecture.rb « debian « packages « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 570f6accd3c0a5e7d9da51ef2f68fde5e2f72048 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class Packages::Debian::GroupArchitecture < ApplicationRecord
  def self.container_type
    :group
  end

  include Packages::Debian::Architecture
end