summaryrefslogtreecommitdiff
path: root/lib/gitlab/gitaly_client/diff.rb
blob: af9d674535bd22e576940c422ec6d24eeb2018d6 (plain)
1
2
3
4
5
6
7
8
9
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