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