summaryrefslogtreecommitdiff
path: root/lib/gitlab/gitaly_client/diff.rb
blob: d98a0ce988fa875ad4046490eb215e25b3fc902d (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).freeze

      include AttributesBag
    end
  end
end