10 lines
160 B
Ruby
10 lines
160 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module API
|
||
|
module Entities
|
||
|
class CommitStats < Grape::Entity
|
||
|
expose :additions, :deletions, :total
|
||
|
end
|
||
|
end
|
||
|
end
|