1# frozen_string_literal: true
2
3module Gitlab
4  module GitalyClient
5    class Diff
6      ATTRS = %i(from_path to_path old_mode new_mode from_id to_id patch overflow_marker collapsed too_large).freeze
7
8      include AttributesBag
9    end
10  end
11end
12