7 lines
157 B
Ruby
7 lines
157 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class DiffLineParallelEntity < Grape::Entity
|
||
|
expose :left, using: DiffLineEntity
|
||
|
expose :right, using: DiffLineEntity
|
||
|
end
|