Welcome to mirror list, hosted at ThFree Co, Russian Federation.

diff.rb « gitaly_client « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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