2017-05-30 15:30:05 -04:00
|
|
|
module Gitlab
|
|
|
|
module GitalyClient
|
|
|
|
class Diff
|
2017-11-13 05:05:16 -05:00
|
|
|
ATTRS = %i(from_path to_path old_mode new_mode from_id to_id patch overflow_marker collapsed).freeze
|
2017-05-30 15:30:05 -04:00
|
|
|
|
2017-11-13 05:05:16 -05:00
|
|
|
include AttributesBag
|
2017-05-30 15:30:05 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|