gitlab-org--gitlab-foss/lib/gitlab/gitaly_client/diff.rb

10 lines
205 B
Ruby
Raw Normal View History

2017-05-30 19:30:05 +00:00
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
2017-05-30 19:30:05 +00:00
include AttributesBag
2017-05-30 19:30:05 +00:00
end
end
end