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: c30b8ab1bc8fd0300e85ad0e2811589c69b047a8 (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