10 lines
176 B
Ruby
10 lines
176 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class Packages::Debian::GroupComponent < ApplicationRecord
|
||
|
def self.container_type
|
||
|
:group
|
||
|
end
|
||
|
|
||
|
include Packages::Debian::Component
|
||
|
end
|