12 lines
317 B
Ruby
12 lines
317 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module GitalyClient
|
|
class DiffBlob
|
|
ATTRS = %i[left_blob_id right_blob_id patch status binary over_patch_bytes_limit].freeze
|
|
|
|
include AttributesBag # rubocop:disable Layout/ClassStructure -- ATTRS needs to be defined before the include.
|
|
end
|
|
end
|
|
end
|