debian-mirror-gitlab/lib/gitlab/gitaly_client/diff.rb
2018-03-17 18:26:18 +05:30

10 lines
205 B
Ruby

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