summaryrefslogtreecommitdiff
path: root/lib/gitlab/gitaly_client/diff.rb
blob: dd192ccde1aec893847b4a87519bbb0c262c60cf (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Gitlab
  module GitalyClient
    class Diff
      ATTRS = %i(from_path to_path old_mode new_mode from_id to_id patch overflow_marker collapsed too_large).freeze

      include AttributesBag
    end
  end
end