10 lines
186 B
Ruby
10 lines
186 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class Packages::Debian::ProjectArchitecture < ApplicationRecord
|
||
|
def self.container_type
|
||
|
:project
|
||
|
end
|
||
|
|
||
|
include Packages::Debian::Architecture
|
||
|
end
|