10 lines
182 B
Ruby
10 lines
182 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class Packages::Debian::GroupArchitecture < ApplicationRecord
|
||
|
def self.container_type
|
||
|
:group
|
||
|
end
|
||
|
|
||
|
include Packages::Debian::Architecture
|
||
|
end
|